Tripadvisor API

Tripadvisor Reviews API

Fetch the latest reviews for any Tripadvisor hotel, restaurant, or attraction by its page URL: rating, text, date, and trip details as normalized JSON.

POST/v1/run/tripadvisor.reviews
Uptime
100.00%
30d · 9 calls
Requests
9
30d · weekly, last 12 wks
Response
15.8s
median · 30d

Try it

Make your first request

ratingsarray
Only return reviews whose bubble rating is in this set (e.g. ["5", "4"] for 4 and 5 star reviews); omit for all ratings.
Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "createdUtc": 12.5,
        "rating": 4.6,
        "text": "A short example description of this item.",
        "title": "Example title",
        "url": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
interface TripadvisorReviewsResponse {
  data: {
    items: {
      createdUtc?: number;
      rating: number;
      text: string;
      title?: string;
      url?: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/tripadvisor.reviews
curl -X POST https://api.getanyapi.com/v1/run/tripadvisor.reviews \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":3,"url":"https://www.tripadvisor.com/Hotel_Review-g60763-d93450-Reviews-The_Plaza-New_York_City_New_York.html"}'
FieldTypeExample value
Request body
urlstring"https://www.tripadvisor.com/Hotel_Review-g60763-d93450-Reviews-The_Plaza-New_York_City_New_York.html"Tripadvisor page URL of the hotel, restaurant, or attraction.
languagesarrayOnly return reviews in these ISO 639-1 languages (e.g. ["en", "es"]); omit for all languages.
limitinteger3Maximum number of results to return (1-20, default 20).
ratingsarrayOnly return reviews whose bubble rating is in this set (e.g. ["5", "4"] for 4 and 5 star reviews); omit for all ratings.
sincestringOnly return reviews newer than this date, YYYY-MM-DD or a relative window like '3 months' (e.g. 2026-01-01).
Response
dataobjectResult payload, or null when nothing was found.
data.itemsobject[]Review records for the place: rating, title, review text, publish date, trip type, and reviewer details. Populated whenever the provider has data for the entity.
data.items[].createdUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Populated whenever the provider has data for the entity.
data.items[].ratingnumberStar rating (typically 1-5).
data.items[].textstringReview body text. Populated whenever the provider has data for the entity.
data.items[].titlestringReview title or headline. Populated whenever the provider has data for the entity.
data.items[].urlstringCanonical review URL. Populated whenever the provider has data for the entity.
foundbooleanWhether any reviews were found for the place.
Price
Price per requestUSD$0.003
Price /1k reqUSD$3.00

FAQ

About the Tripadvisor Reviews API

The AnyAPI Tripadvisor Reviews API returns Tripadvisor reviews data as normalized JSON from one POST call to /v1/run/tripadvisor.reviews. Fetch the latest reviews for any Tripadvisor hotel, restaurant, or attraction by its page URL: rating, text, date, and trip details as normalized JSON. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $3 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Tripadvisor reviews calls through AnyAPI succeeded, with a median response time of 15.8 seconds across 9 measured calls.

It costs from $3 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Fetch the latest reviews for any Tripadvisor hotel, restaurant, or attraction by its page URL: rating, text, date, and trip details as normalized JSON. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of Tripadvisor reviews calls through AnyAPI succeeded, with a median response time of 15.8 seconds across 9 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.
More to call

Other Tripadvisor endpoints