1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "search": "New York",
12 "startUrls": [],
13 "maxItems": 10,
14 "scrapeAdditionalHotelData": true,
15 "propertyType": "none",
16 "sortBy": "distance_from_search",
17 "minimumRating": "",
18 "starsCountFilter": "any",
19 "currency": "USD",
20 "language": "en-gb",
21 "checkIn": "",
22 "checkOut": "",
23 "flexWindow": "0",
24 "rooms": 1,
25 "adults": 2,
26 "children": 0,
27 "minMaxPrice": "0-999999",
28 "proxyConfiguration": {
29 "useApifyProxy": true,
30 "apifyProxyGroups": [
31 "RESIDENTIAL"
32 ]
33 }
34};
35
36
37const run = await client.actor("scrapepilotapi/booking-scraper").call(input);
38
39
40console.log('Results from dataset');
41console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
42const { items } = await client.dataset(run.defaultDatasetId).listItems();
43items.forEach((item) => {
44 console.dir(item);
45});
46
47