TripAdvisor Scraper avatar

TripAdvisor Scraper

Try for free

1 day trial then $20.00/month - No credit card required now

View all Actors
TripAdvisor Scraper

TripAdvisor Scraper

epctex/tripadvisor-scraper
Try for free

1 day trial then $20.00/month - No credit card required now

Explore with our Trip Advisor Scraper: an easy search for hotels, restaurants, attractions, and more by keywords or start URL. Enter check-in/out dates, and select currency and language. Promote locations, capture details, and retrieve emails and phone numbers if shared.

You can access the TripAdvisor Scraper programmatically from your own JavaScript applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
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// Run the Actor and wait for it to finish
33const run = await client.actor("epctex/tripadvisor-scraper").call(input);
34
35// Fetch and print Actor results from the run's dataset (if any)
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// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

TripAdvisor Scraper API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use TripAdvisor Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

npm install apify-client

Other API clients include:

Developer
Maintained by Community
Actor metrics
  • 33 monthly users
  • 3 stars
  • 99.7% runs succeeded
  • 23 hours response time
  • Created in Feb 2024
  • Modified about 3 hours ago