Endpoint Playground
Test Crawlora's TripAdvisor Place 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/place" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | No | TripAdvisor place URL | |
| id | string | No | TripAdvisor location id fallback |
{
"code": 200,
"msg": "OK",
"data": {
"id": "311573",
"geo_id": "294217",
"title": "Victoria Peak (The Peak)",
"url": "https://en.tripadvisor.com.hk/Attraction_Review-g294217-d311573-Reviews-Victoria_Peak_The_Peak-Hong_Kong.html",
"canonical_url": "https://www.tripadvisor.com/Attraction_Review-g294217-d311573-Reviews-Victoria_Peak_The_Peak-Hong_Kong.html",
"type": "attraction",
"image": "https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg",
"images": [
{
"url": "https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg",
"width": 1200,
"height": 800,
"caption": "Victoria Peak"
}
],
"rating": 4.5,
"reviews": 36770,
"address": "Victoria Gap, Hong Kong, China",
"address_parts": {
"street": "Victoria Gap",
"locality": "Hong Kong",
"country": "China"
},
"latitude": 22.2759,
"longitude": 114.1455,
"summary": "Scenic viewpoint above Hong Kong.",
"description": "Scenic viewpoint above Hong Kong.",
"categories": [
"TouristAttraction"
],
"tags": [
"Lookouts"
],
"amenities": [
"Observation deck"
],
"opening_hours": [
"Monday 10:00 - 22:00"
],
"rank": 1,
"rank_label": "#1 of 1,531 things to do in Hong Kong",
"awards": [
"Travelers' Choice"
],
"breadcrumbs": [
"Asia",
"China",
"Hong Kong"
],
"links": [
{
"type": "canonical",
"label": "TripAdvisor page",
"url": "https://www.tripadvisor.com/Attraction_Review-g294217-d311573-Reviews-Victoria_Peak_The_Peak-Hong_Kong.html"
},
{
"type": "website",
"label": "Website",
"url": "https://www.thepeak.com.hk/"
}
]
}
}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 a rich normalized TripAdvisor place profile from public place HTML, using configured browser fallbacks when direct HTML is blocked.
{
"code": 200,
"msg": "OK",
"data": {
"id": "311573",
"geo_id": "294217",
"title": "Victoria Peak (The Peak)",
"url": "https://en.tripadvisor.com.hk/Attraction_Review-g294217-d311573-Reviews-Victoria_Peak_The_Peak-Hong_Kong.html",
"canonical_url": "https://www.tripadvisor.com/Attraction_Review-g294217-d311573-Reviews-Victoria_Peak_The_Peak-Hong_Kong.html",
"type": "attraction",
"image": "https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg",
"images": [
{
"url": "https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg",
"width": 1200,
"height": 800,
"caption": "Victoria Peak"
}
],
"rating": 4.5,
"reviews": 36770,
"address": "Victoria Gap, Hong Kong, China",
"address_parts": {
"street": "Victoria Gap",
"locality": "Hong Kong",
"country": "China"
},
"latitude": 22.2759,
"longitude": 114.1455,
"summary": "Scenic viewpoint above Hong Kong.",
"description": "Scenic viewpoint above Hong Kong.",
"categories": [
"TouristAttraction"
],
"tags": [
"Lookouts"
],
"amenities": [
"Observation deck"
],
"opening_hours": [
"Monday 10:00 - 22:00"
],
"rank": 1,
"rank_label": "#1 of 1,531 things to do in Hong Kong",
"awards": [
"Travelers' Choice"
],
"breadcrumbs": [
"Asia",
"China",
"Hong Kong"
],
"links": [
{
"type": "canonical",
"label": "TripAdvisor page",
"url": "https://www.tripadvisor.com/Attraction_Review-g294217-d311573-Reviews-Victoria_Peak_The_Peak-Hong_Kong.html"
},
{
"type": "website",
"label": "Website",
"url": "https://www.thepeak.com.hk/"
}
]
}
}curl "https://api.crawlora.net/api/v1/tripadvisor/place" \
-H "x-api-key: $CRAWLORA_API_KEY"