1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "workflow": "collect",
12 "keyword": "software",
13 "location": "United States",
14 "startUrls": [],
15 "postedDate": "anytime",
16 "workplace": "all",
17 "employmentType": "all",
18 "includeDescription": true,
19 "stateNamespace": "default",
20 "firstRunBehavior": "seed_only",
21 "maxJobs": 20,
22 "maxRuntimeSecs": 180,
23 "maxBuyerChargeUsd": 1
24};
25
26
27const run = await client.actor("luminar/workable-jobs-change-monitor").call(input);
28
29
30console.log('Results from dataset');
31console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
32const { items } = await client.dataset(run.defaultDatasetId).listItems();
33items.forEach((item) => {
34 console.dir(item);
35});
36
37