1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "mode": "search",
12 "listingType": "sale",
13 "propertyType": "any",
14 "locations": [
15 "Istanbul"
16 ],
17 "urls": [
18 "https://www.hepsiemlak.com/en/satilik"
19 ],
20 "fetchDetails": false,
21 "maxItems": 20,
22 "incrementalMode": false,
23 "emitUnchanged": false,
24 "emitExpired": false,
25 "proxyConfiguration": {
26 "useApifyProxy": true,
27 "apifyProxyGroups": [
28 "RESIDENTIAL"
29 ],
30 "apifyProxyCountry": "TR"
31 }
32};
33
34
35const run = await client.actor("abotapi/hepsiemlak-com-scraper").call(input);
36
37
38console.log('Results from dataset');
39console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
40const { items } = await client.dataset(run.defaultDatasetId).listItems();
41items.forEach((item) => {
42 console.dir(item);
43});
44
45