1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "operation": "search",
12 "locations": [
13 "grad-sofiya"
14 ],
15 "dealType": "prodazhbi",
16 "propertyTypes": [],
17 "maxResults": 100,
18 "includeDetails": false,
19 "minPrice": 0,
20 "maxPrice": 0,
21 "minArea": 0,
22 "maxArea": 0,
23 "onlyPriceReduced": false,
24 "onlyNewListings": false,
25 "onlyPrivateSellers": false,
26 "searchUrls": [],
27 "listingUrls": []
28};
29
30
31const run = await client.actor("sian.agency/imot-property-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