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