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 "Zürich"
14 ],
15 "dealType": "rent",
16 "propertyType": "residential",
17 "maxResults": 100,
18 "minPrice": 0,
19 "maxPrice": 0,
20 "minRooms": 0,
21 "maxRooms": 0,
22 "minSpace": 0,
23 "maxSpace": 0,
24 "amenities": [],
25 "furnishedOnly": false,
26 "temporaryOnly": false,
27 "listingUrls": []
28};
29
30
31const run = await client.actor("sian.agency/flatfox-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