Endpoint Playground
Test Crawlora's TripAdvisor Reviews API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/tripadvisor/reviews?id=113311&page=1&limit=3&language=en&sort_type=DEFAULT&sort_by=DATE&photos_per_review_limit=7" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | 113311 | TripAdvisor location id |
| url | string | No | TripAdvisor place URL | |
| page | integer | No | 1 | 1-based review page |
| limit | integer | No | 3 | Maximum reviews |
| language | string | No | en | Review language |
| sort_type | string | No | DEFAULT | Review sort type |
| sort_by | string | No | DATE | Review sort field |
| ratings | array | No | Rating filters | |
| do_machine_translation | boolean | No | Enable upstream machine translation | |
| photos_per_review_limit | integer | No | 7 | Maximum photos per review |
{
"code": 200,
"msg": "OK",
"data": {
"id": "113311",
"url": "https://www.tripadvisor.com/Hotel_Review-g60763-d113311-Reviews-The_Peninsula_New_York-New_York_City_New_York.html",
"page": 1,
"limit": 3,
"language": "en",
"total": 1517,
"reviews": [
{
"id": "1060008752",
"url": "https://www.tripadvisor.com/ShowUserReviews-g60763-d113311-r1060008752-The_Peninsula_New_York-New_York_City_New_York.html",
"title": "Outstanding weekend at the Peninsula",
"text": "Excellent stay with attentive service.",
"author": "Jane D.",
"date": "May 2026",
"created_date": "2026-05-01",
"language": "en",
"rating": 5,
"helpful_votes": 1,
"photos": [
"https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg"
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized TripAdvisor public reviews from credential-free GraphQL review data. Pass either id or url.
{
"code": 200,
"msg": "OK",
"data": {
"id": "113311",
"url": "https://www.tripadvisor.com/Hotel_Review-g60763-d113311-Reviews-The_Peninsula_New_York-New_York_City_New_York.html",
"page": 1,
"limit": 3,
"language": "en",
"total": 1517,
"reviews": [
{
"id": "1060008752",
"url": "https://www.tripadvisor.com/ShowUserReviews-g60763-d113311-r1060008752-The_Peninsula_New_York-New_York_City_New_York.html",
"title": "Outstanding weekend at the Peninsula",
"text": "Excellent stay with attentive service.",
"author": "Jane D.",
"date": "May 2026",
"created_date": "2026-05-01",
"language": "en",
"rating": 5,
"helpful_votes": 1,
"photos": [
"https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/tripadvisor/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"