1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "jobKeywords": [
12 "Salesforce Administrator",
13 "RevOps Manager",
14 "HubSpot Specialist"
15 ],
16 "jobRows": [
17 {
18 "companyName": "Instrumentl",
19 "domain": "instrumentl.com",
20 "jobTitle": "RevOps Manager",
21 "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.",
22 "postedAt": "2026-05-20",
23 "url": "https://jobs.lever.co/Instrumentl/a2c6c454-00a1-4ab0-9c02-cddfffec17b5",
24 "source": "lever_public_job"
25 }
26 ]
27};
28
29
30const run = await client.actor("signalflow_studio/hiring-intent-lead-finder").call(input);
31
32
33console.log('Results from dataset');
34console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
35const { items } = await client.dataset(run.defaultDatasetId).listItems();
36items.forEach((item) => {
37 console.dir(item);
38});
39
40