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 "auckland",
14 "wellington"
15 ],
16 "category": "res_sale",
17 "propertyTypes": [],
18 "listingUrls": [],
19 "openHomesOnly": false,
20 "newBuildsOnly": false,
21 "mortgageeSalesOnly": false,
22 "petFriendlyOnly": false,
23 "sortBy": "latest",
24 "soldWithin": "12-months",
25 "soldSortBy": "latest-sale",
26 "maxResults": 100
27};
28
29
30const run = await client.actor("sian.agency/realestate-nz-property-scraper").call(input);
31
32
33console.log('Results from dataset');
34console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
35const { items } = await client.dataset(run.defaultDatasetId).listItems();
36items.forEach((item) => {
37 console.dir(item);
38});
39
40