See llms.txt for all machine-readable content.
No reputation management subscription and no review platform API key. Every week this pulls the latest reviews for the hotels you list, sends anything at or below your rating threshold to its own reply queue tab, and appends every review to a running history in Google Sheets.
johnvc~tripadvisor-api actor.d143336).How do I monitor hotel reviews automatically? List your hotels as Tripadvisor place IDs in one Set node and let the weekly schedule run. Each run appends one row per review, stamped with the run date and keyed by review ID, so the sheet becomes a review history rather than a one-off export you forget to repeat.
Why are there two tabs? Because a single appended log buries the complaints among the five star reviews. Anything at or below your threshold takes the IF node's true branch into a short reply queue, and every review still lands in the history tab, so nothing is lost and nobody has to scan for the bad ones.
How do I know which reviews are new? Two ways. A review ID that appears in this week's rows and not in last week's is a new review. And every row carries the hotel's running review total, so the count rising week over week tells you the pace before you diff a single row.
Where do I find a hotel's place ID? Open the hotel's page on Tripadvisor and read the number after d in the URL: a URL containing d143336 means place ID 143336. The actor's search mode also returns the placeId for every hotel it finds, so you can look properties up by name once and paste the IDs into the config node.
Why is the stay date only a month? Because that is all the source gives. The stay date always lands on a month end, so the column ships as YYYY-MM rather than pretending to know the exact night. Trip type is cleaned up the same way: it arrives upper case with NONE standing in for not stated, and the template folds that into a blank.
What does it cost? The template is free. A review costs about a fifth of a cent, so checking the latest ten reviews on one hotel weekly is just under 2 cents a week.
About Apify. Tripadvisor API runs on Apify, a platform of ready-made scrapers and APIs for sources that have no usable public API. Actors are pay per use with no subscription, and they run in the cloud, so nothing runs on your machine and nothing breaks when the source changes its markup.
New to Apify? You can set up a free account and get the API token this template needs in a couple of minutes.