1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "mode": "items",
10 "items": [
11 {
12 "company": {
13 "name": "Northstar CRM",
14 "website": "https://www.northstarcrm.com/careers",
15 },
16 "title": "Senior Salesforce Revenue Operations Manager",
17 "url": "https://jobs.ashbyhq.com/northstar/sr-revops?utm_source=linkedin",
18 "datePosted": "2026-07-01",
19 "location": "Remote US",
20 "description": "Own Salesforce, HubSpot, attribution workflows, pipeline reporting, and urgent GTM automation projects while we scale the sales team.",
21 "source": "Ashby",
22 },
23 {
24 "employer": "Deskly",
25 "title": "Office Assistant",
26 "description": "General administrative support for the office.",
27 },
28 ],
29 "serviceProfile": "fractional RevOps team",
30 "targetRoles": [
31 "Revenue Operations",
32 "Sales Operations",
33 "Salesforce",
34 ],
35 "toolKeywords": [
36 "Salesforce",
37 "HubSpot",
38 "Outreach",
39 ],
40}
41
42
43run = client.actor("rotvuvo/hiring-gap-bridge-offer-scorer").call(run_input=run_input)
44
45
46print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
47for item in client.dataset(run["defaultDatasetId"]).iterate_items():
48 print(item)
49
50