1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "jobSearchKeyword": "RevOps Manager",
12 "jobSearchLocation": "United States",
13 "upstreamActors": [],
14 "jobRows": [
15 {
16 "companyName": "Instrumentl",
17 "domain": "instrumentl.com",
18 "jobTitle": "RevOps Manager",
19 "description": "Own HubSpot, lead scoring, reporting, segmentation, product usage data, enrichment providers, and GTM systems.",
20 "postedAt": "2026-05-20",
21 "url": "https://jobs.lever.co/Instrumentl/a2c6c454-00a1-4ab0-9c02-cddfffec17b5",
22 "source": "lever_public_job"
23 }
24 ],
25 "jobKeywords": [
26 "RevOps Manager",
27 "Salesforce Administrator",
28 "HubSpot"
29 ]
30};
31
32
33const run = await client.actor("signalflow_studio/job-posts-to-buying-signals").call(input);
34
35
36console.log('Results from dataset');
37console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38const { items } = await client.dataset(run.defaultDatasetId).listItems();
39items.forEach((item) => {
40 console.dir(item);
41});
42
43