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 "listingType": "residential",
13 "location": "Auckland",
14 "propertyType": "any",
15 "priceMin": 0,
16 "priceMax": 0,
17 "bedroomsMin": 0,
18 "bedroomsMax": 0,
19 "bathroomsMin": 0,
20 "floorAreaMinSqm": 0,
21 "landAreaMinSqm": 0,
22 "keywords": "",
23 "listedSince": "any",
24 "openHomesOnly": false,
25 "includeAdjacentSuburbs": false,
26 "petsAllowed": false,
27 "sort": "newest",
28 "maxResults": 100,
29 "includeDetails": false,
30 "listingUrls": []
31};
32
33
34const run = await client.actor("sian.agency/trademe-property-scraper").call(input);
35
36
37console.log('Results from dataset');
38console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
39const { items } = await client.dataset(run.defaultDatasetId).listItems();
40items.forEach((item) => {
41 console.dir(item);
42});
43
44