1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "locationSlug": "new-york-ny",
12 "batches": [
13 {
14 "locationSlug": "london-england--united-kingdom"
15 },
16 {
17 "locationSlug": "manchester-gtm--united-kingdom"
18 }
19 ],
20 "urls": [
21 "https://www.loopnet.co.uk/search/commercial-property/london-england--united-kingdom/for-lease/"
22 ],
23 "proxyConfiguration": {
24 "useApifyProxy": true,
25 "apifyProxyGroups": [
26 "UNBLOCKER"
27 ]
28 }
29};
30
31
32const run = await client.actor("ahmed_jasarevic/loopnet-scraper").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