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 "listingUrls": [],
16 "transactionType": "rent",
17 "propertyCategory": "all",
18 "maxResults": 60,
19 "descriptionLanguage": "original",
20 "includeDetails": false,
21 "minPrice": 0,
22 "maxPrice": 0,
23 "minRooms": 0,
24 "maxRooms": 0,
25 "minLivingSpace": 0,
26 "maxLivingSpace": 0,
27 "petsAllowed": false
28};
29
30
31const run = await client.actor("sian.agency/immoscout24-ch-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