1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "scrapeStays.searchUrl": "https://www.booking.com/searchresults.en-gb.html?label=en-in-booking-desktop-CmH43mrsjzqEEFQPgVycoAS652796016141%3Apl%3Ata%3Ap1%3Ap2%3Aac%3Aap%3Aneg%3Afi%3Atikwd-65526620%3Alp1007772%3Ali%3Adec%3Adm&aid=2311236&ss=Lonavala%2C+India&lang=en-gb&sb=1&src_elem=sb&src=index&dest_id=-2102774&dest_type=city&checkin=2023-08-12&checkout=2023-09-01&group_adults=2&no_rooms=1&group_children=0&sb_travel_purpose=leisure&offset=0",
12 "startPage": 1,
13 "count": 100,
14 "proxy": {
15 "useApifyProxy": true
16 }
17};
18
19
20const run = await client.actor("curious_coder/booking-scraper").call(input);
21
22
23console.log('Results from dataset');
24console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
25const { items } = await client.dataset(run.defaultDatasetId).listItems();
26items.forEach((item) => {
27 console.dir(item);
28});
29
30