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 "dealType": "sale",
13 "propertyCategory": "apartments",
14 "city": "baki",
15 "maxResults": 50,
16 "rooms": [],
17 "minPrice": 0,
18 "maxPrice": 0,
19 "minArea": 0,
20 "maxArea": 0,
21 "hasRepair": false,
22 "hasBillOfSale": false,
23 "hasMortgage": false,
24 "sort": "newest",
25 "includeDetails": false,
26 "searchUrls": [],
27 "listingUrls": []
28};
29
30
31const run = await client.actor("sian.agency/bina-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