Tripadvisor · Schema
Tripadvisor Review
A user review for a Tripadvisor location including rating, text, trip type, and reviewer information.
AttractionsHotelsHospitalityRestaurantReviewsTravel
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The unique identifier for this review. |
| lang | string | The language code of the review. |
| location_id | integer | The Tripadvisor location ID this review is for. |
| published_date | string | The date and time the review was published in ISO 8601 format. |
| rating | integer | The overall rating given by the reviewer. |
| helpful_votes | integer | The number of helpful votes this review has received. |
| rating_image_url | string | URL of the rating bubble image for this review's rating. |
| url | string | URL of the full review on Tripadvisor. |
| text | string | The full text content of the review. |
| title | string | The title or headline of the review. |
| trip_type | string | The type of trip associated with this review. |
| travel_date | string | The date of travel associated with this review in YYYY-MM format. |
| user | object | |
| subratings | object | Sub-rating scores for specific aspects of the location (e.g., service, value, cleanliness). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://developer-tripadvisor.com/schemas/tripadvisor/review.json",
"title": "Tripadvisor Review",
"description": "A user review for a Tripadvisor location including rating, text, trip type, and reviewer information.",
"type": "object",
"required": ["id", "rating"],
"properties": {
"id": {
"type": "integer",
"description": "The unique identifier for this review."
},
"lang": {
"type": "string",
"description": "The language code of the review.",
"minLength": 2,
"maxLength": 5
},
"location_id": {
"type": "integer",
"description": "The Tripadvisor location ID this review is for."
},
"published_date": {
"type": "string",
"format": "date-time",
"description": "The date and time the review was published in ISO 8601 format."
},
"rating": {
"type": "integer",
"description": "The overall rating given by the reviewer.",
"minimum": 1,
"maximum": 5
},
"helpful_votes": {
"type": "integer",
"description": "The number of helpful votes this review has received.",
"minimum": 0
},
"rating_image_url": {
"type": "string",
"format": "uri",
"description": "URL of the rating bubble image for this review's rating."
},
"url": {
"type": "string",
"format": "uri",
"description": "URL of the full review on Tripadvisor."
},
"text": {
"type": "string",
"description": "The full text content of the review."
},
"title": {
"type": "string",
"description": "The title or headline of the review.",
"maxLength": 200
},
"trip_type": {
"type": "string",
"description": "The type of trip associated with this review.",
"enum": ["business", "couples", "family", "friends", "solo"]
},
"travel_date": {
"type": "string",
"description": "The date of travel associated with this review in YYYY-MM format.",
"pattern": "^\\d{4}-\\d{2}$"
},
"user": {
"$ref": "#/$defs/UserReference"
},
"subratings": {
"type": "object",
"description": "Sub-rating scores for specific aspects of the location (e.g., service, value, cleanliness).",
"additionalProperties": {
"$ref": "#/$defs/SubRating"
}
}
},
"$defs": {
"UserReference": {
"type": "object",
"description": "Reference to a Tripadvisor user who authored the review.",
"properties": {
"username": {
"type": "string",
"description": "The username of the reviewer."
},
"user_location": {
"type": "object",
"description": "The reviewer's stated location.",
"properties": {
"name": {
"type": "string",
"description": "The display name of the reviewer's location."
},
"id": {
"type": "string",
"description": "The location ID of the reviewer's location."
}
}
},
"avatar": {
"type": "object",
"description": "Avatar images for the reviewer.",
"properties": {
"thumbnail": {
"type": "string",
"format": "uri",
"description": "URL of the reviewer's thumbnail avatar."
},
"small": {
"type": "string",
"format": "uri",
"description": "URL of the reviewer's small avatar."
},
"large": {
"type": "string",
"format": "uri",
"description": "URL of the reviewer's large avatar."
}
}
}
}
},
"SubRating": {
"type": "object",
"description": "A sub-rating score for a specific aspect of a location.",
"properties": {
"name": {
"type": "string",
"description": "The name of the sub-rating category (e.g., Service, Value)."
},
"rating_image_url": {
"type": "string",
"format": "uri",
"description": "URL of the rating bubble image for this sub-rating."
},
"value": {
"type": "string",
"description": "The sub-rating numeric value."
}
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/tripadvisor-review"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.