1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "urls": [
12 "https://example.com",
13 "https://quotes.toscrape.com"
14 ],
15 "jsonStructure": {
16 "title": "title",
17 "quotes": "div.quote span.text"
18 },
19 "tables": {
20 "products": "#products-table"
21 },
22 "headers": {},
23 "cache": {
24 "enabled": false,
25 "ttl": 3600
26 },
27 "unblocker": {
28 "provider": "",
29 "apiKey": "",
30 "zone": ""
31 },
32 "promoCode": ""
33};
34
35
36const run = await client.actor("enheartening_loam/stealth-scraper-md").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