1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "jobKeywords": [
10 "Salesforce Administrator",
11 "RevOps Manager",
12 "HubSpot Specialist",
13 ],
14 "jobRows": [{
15 "companyName": "Instrumentl",
16 "domain": "instrumentl.com",
17 "jobTitle": "RevOps Manager",
18 "description": "Instrumentl is hiring a RevOps Manager to own the technical infrastructure that powers the marketing engine. The role maintains the marketing data model in HubSpot, connects product usage, event platforms, enrichment providers, ad platforms, product analytics, and data warehouse workflows, and builds lead scoring, segmentation, reporting, and AI tooling across GTM systems.",
19 "postedAt": "2026-05-20",
20 "url": "https://jobs.lever.co/Instrumentl/a2c6c454-00a1-4ab0-9c02-cddfffec17b5",
21 "source": "lever_public_job",
22 }],
23}
24
25
26run = client.actor("signalflow_studio/hiring-intent-lead-finder").call(run_input=run_input)
27
28
29print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
30for item in client.dataset(run["defaultDatasetId"]).iterate_items():
31 print(item)
32
33