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 "wireless earbuds"
13 ],
14 "maxItems": 20,
15 "sortBy": "relevance",
16 "searchType": "pcmarket",
17 "targetSellingPrice": 29.99,
18 "cnyExchangeRate": 0.14,
19 "freightPerUnit": 2.5,
20 "dutyPercent": 5,
21 "marketplaceFeePercent": 15,
22 "otherCostPerUnit": 1,
23 "targetMarginPercent": 25,
24 "proxyConfiguration": {
25 "useApifyProxy": true,
26 "apifyProxyGroups": [
27 "RESIDENTIAL"
28 ],
29 "apifyProxyCountry": "CN"
30 }
31};
32
33
34const run = await client.actor("haketa/1688-sourcing-profit-analyzer").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