Tripadvisor Reviews avatar
Tripadvisor Reviews

Pricing

$5.00/month + usage

Go to Store
Tripadvisor Reviews

Tripadvisor Reviews

Developed by

Canadesk Support

Canadesk Support

Maintained by Community

Get Reviews for airlines, hotels, restaurants and attractions with advanced filters (+ AI summary) from Tripadvisor. It's fast and costs little.

0.0 (0)

Pricing

$5.00/month + usage

3

Total users

13

Monthly users

2

Runs succeeded

>99%

Last modified

4 months ago

You can access the Tripadvisor Reviews programmatically from your own 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 "keyword": "https://www.tripadvisor.com/Airline_Review-d8729069-Reviews-Emirates",
12 "text": "",
13 "lang": [
14 "en"
15 ],
16 "rating": [
17 "1",
18 "2",
19 "3",
20 "4",
21 "5"
22 ],
23 "cabin": [
24 "BUSINESS",
25 "ECONOMY",
26 "FIRST",
27 "PREMIUM_ECONOMY"
28 ],
29 "segment": [
30 "Business",
31 "Couples",
32 "Family",
33 "Friends",
34 "Solo"
35 ],
36 "bestmonths": [
37 "1",
38 "10",
39 "11",
40 "12",
41 "2",
42 "3",
43 "4",
44 "5",
45 "6",
46 "7",
47 "8",
48 "9"
49 ],
50 "proxy": {
51 "useApifyProxy": true,
52 "apifyProxyGroups": [
53 "RESIDENTIAL"
54 ]
55 }
56};
57
58// Run the Actor and wait for it to finish
59const run = await client.actor("canadesk/tripadvisor-reviews").call(input);
60
61// Fetch and print Actor results from the run's dataset (if any)
62console.log('Results from dataset');
63console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
64const { items } = await client.dataset(run.defaultDatasetId).listItems();
65items.forEach((item) => {
66 console.dir(item);
67});
68
69// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Tripadvisor Reviews API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Tripadvisor Reviews 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: