1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "domains": [
12 "allbirds.com",
13 "techcrunch.com",
14 "vercel.com",
15 "sentry.io"
16 ],
17 "maxConcurrency": 20,
18 "timeoutSecs": 10,
19 "minConfidence": 50,
20 "renderConcurrency": 4,
21 "renderTimeoutSecs": 25,
22 "renderBlockResources": "default",
23 "snapshotStoreName": "tech-stack-snapshots",
24 "changesDatasetName": "tech-stack-changes",
25 "changeMinConfidence": 75,
26 "changeConfirmScans": 2,
27 "proxy": {
28 "useApifyProxy": false
29 }
30};
31
32
33const run = await client.actor("flux_pull/tech-stack-buying-signal-enrichment").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