Tripadvisor Reputation Action Queue
Pricing
from $4.25 / 1,000 actionable insights
Tripadvisor Reputation Action Queue
Turn hotel, route, or offer records into ranked, evidence-backed travel pricing signals.
Tripadvisor Reputation Action Queue
Pricing
from $4.25 / 1,000 actionable insights
Turn hotel, route, or offer records into ranked, evidence-backed travel pricing signals.
You can access the Tripadvisor Reputation Action Queue 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 token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "records": [12 {13 "hotelId": "hotel-demo-001",14 "name": "Harbour View Hotel",15 "destination": "Hong Kong",16 "price": 118,17 "currency": "USD",18 "availability": "available",19 "availabilityCount": 4,20 "rating": 4.5,21 "reviewsCount": 2900,22 "roomType": "Harbour room",23 "cancellationPolicy": "Free cancellation",24 "discount": 32,25 "observedAt": "2026-08-02T10:00:00Z",26 "productWorkflow": "tripadvisor-reputation-action-queue"27 }28 ],29 "previousRecords": [30 {31 "hotelId": "hotel-demo-001",32 "name": "Harbour View Hotel",33 "destination": "Hong Kong",34 "price": 176,35 "currency": "USD",36 "availability": "available",37 "availabilityCount": 9,38 "rating": 4.5,39 "reviewsCount": 2870,40 "roomType": "Harbour room",41 "cancellationPolicy": "Non-refundable",42 "discount": 0,43 "observedAt": "2026-08-01T10:00:00Z",44 "productWorkflow": "tripadvisor-reputation-action-queue"45 }46 ]47};48
49// Run the Actor and wait for it to finish50const run = await client.actor("night111/tripadvisor-reputation-action-queue").call(input);51
52// Fetch and print Actor results from the run's dataset (if any)53console.log('Results from dataset');54console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);55const { items } = await client.dataset(run.defaultDatasetId).listItems();56items.forEach((item) => {57 console.dir(item);58});59
60// π Want to learn more π? Go to β https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Tripadvisor Reputation Action Queue API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: