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": false
30 }
31};
32
33
34const run = await client.actor("scrapebase/bookingscraper").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