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    "checkInDate": "2025-01-01",
13    "checkOutDate": "2025-10-01",
14    "startUrls": [
15        "https://www.tripadvisor.com/Hotel_Review-g35805-d236299-Reviews-Sofitel_Chicago_Magnificent_Mile-Chicago_Illinois.html",
16        "https://www.tripadvisor.com/Hotels-g294200-Egypt-Hotels.html",
17        "https://www.tripadvisor.com/FindRestaurants?geo=32655&establishmentTypes=10591&mealTypes=10606&priceTypes=10955&broadened=false",
18        "https://www.tripadvisor.com/Tourism-g60763-New_York_City_New_York-Vacations.html",
19        "https://www.tripadvisor.com/Trips/122547544"
20    ],
21    "language": "en",
22    "currency": "USD",
23    "maxItems": 20,
24    "endPage": 1,
25    "extendOutputFunction": ($) => { return {} },
26    "customMapFunction": (object) => { return {...object} },
27    "proxy": {
28        "useApifyProxy": true
29    }
30};
31
32
33const run = await client.actor("epctex/tripadvisor-scraper").call(input);
34
35
36console.log('Results from dataset');
37console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
38const { items } = await client.dataset(run.defaultDatasetId).listItems();
39items.forEach((item) => {
40    console.dir(item);
41});
42
43