1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "startUrls": [],
12 "query": "data engineer",
13 "location": "",
14 "geo": "TOTALJOBS",
15 "minSalary": 0,
16 "language": "",
17 "fromDate": "",
18 "toDate": "",
19 "maxResults": 25,
20 "maxPages": 5,
21 "outputFields": [],
22 "datasetName": "",
23 "stateStoreName": "totaljobs-state",
24 "dedupStoreName": "",
25 "dedupKey": "jobKey",
26 "proxyConfiguration": {
27 "useApifyProxy": true,
28 "apifyProxyGroups": [
29 "RESIDENTIAL"
30 ],
31 "apifyProxyCountry": "GB"
32 }
33};
34
35
36const run = await client.actor("parsebird/totaljobs-scraper").call(input);
37
38
39console.log('Results from dataset');
40console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
41const { items } = await client.dataset(run.defaultDatasetId).listItems();
42items.forEach((item) => {
43 console.dir(item);
44});
45
46