1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "mode": "search",
12 "query": "Taipei",
13 "language": "en",
14 "currency": "USD",
15 "urls": [
16 "https://www.kkday.com/en/product/productlist?q=Taipei"
17 ],
18 "fetchDetails": true,
19 "maxItems": 20,
20 "maxPages": 0,
21 "incrementalMode": false,
22 "emitUnchanged": false,
23 "emitExpired": false,
24 "proxyConfiguration": {
25 "useApifyProxy": true,
26 "apifyProxyGroups": [
27 "RESIDENTIAL"
28 ],
29 "apifyProxyCountry": "SG"
30 }
31};
32
33
34const run = await client.actor("abotapi/kkday-com-scraper").call(input);
35
36
37console.log('Results from dataset');
38console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
39const { items } = await client.dataset(run.defaultDatasetId).listItems();
40items.forEach((item) => {
41 console.dir(item);
42});
43
44