1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "keywords": [
12 "dog leash",
13 "cat toy"
14 ],
15 "dropshipOnly": true,
16 "includeEnglishTranslation": true,
17 "includeLandedCost": true,
18 "includeCompliance": true,
19 "excludeFoodProducts": true,
20 "includeDescriptionImages": true,
21 "offerIds": [],
22 "mintOnMiss": true,
23 "detailIdentityRotation": false,
24 "skipDetails": false,
25 "proxyConfiguration": {
26 "useApifyProxy": true,
27 "apifyProxyGroups": [
28 "RESIDENTIAL"
29 ],
30 "apifyProxyCountry": "CN"
31 }
32};
33
34
35const run = await client.actor("crawleast/china-pet-supplies-scraper").call(input);
36
37
38console.log('Results from dataset');
39console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
40const { items } = await client.dataset(run.defaultDatasetId).listItems();
41items.forEach((item) => {
42 console.dir(item);
43});
44
45