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 "market": "uy",
13 "place": "uy:montevideo",
14 "operationType": "venta",
15 "propertyType": "inmuebles",
16 "listingUrls": [],
17 "listingIds": [],
18 "minPrice": 0,
19 "maxPrice": 0,
20 "priceCurrency": "USD",
21 "minBedrooms": 0,
22 "minBathrooms": 0,
23 "minArea": 0,
24 "maxArea": 0,
25 "propertyState": "",
26 "publishedWithin": "",
27 "sortBy": "newest",
28 "maxResults": 100
29};
30
31
32const run = await client.actor("sian.agency/infocasas-property-scraper").call(input);
33
34
35console.log('Results from dataset');
36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
37const { items } = await client.dataset(run.defaultDatasetId).listItems();
38items.forEach((item) => {
39 console.dir(item);
40});
41
42