1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "brand": "Guardian",
12 "country": "vn",
13 "maxPlaces": 5,
14 "maxReviewsPerPlace": 20,
15 "brands": [
16 {
17 "brand": "guardian",
18 "role": "us"
19 },
20 {
21 "brand": "hasaki",
22 "role": "competitor"
23 },
24 {
25 "brand": "watsons",
26 "role": "competitor"
27 }
28 ]
29};
30
31
32const run = await client.actor("coppery_bulldozer/retail-voc-store-review-sweep").call(input);
33
34
35console.log('Results from dataset');
36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
37const { items } = await client.dataset(run.defaultDatasetId).listItems();
38items.forEach((item) => {
39 console.dir(item);
40});
41
42