1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "searchTerms": [
12 "restaurants",
13 "dentists"
14 ],
15 "locations": [
16 "New York",
17 "Chicago"
18 ],
19 "startUrls": [
20 {
21 "url": "https://citysquares.com/b/new-york-ny"
22 }
23 ],
24 "maxItems": 100,
25 "maxReviews": 10,
26 "maxConcurrency": 2,
27 "maxRuntimeMinutes": 5
28};
29
30
31const run = await client.actor("happitap/citysquares-scraper").call(input);
32
33
34console.log('Results from dataset');
35console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
36const { items } = await client.dataset(run.defaultDatasetId).listItems();
37items.forEach((item) => {
38 console.dir(item);
39});
40
41