Endpoint Playground
Test Crawlora's TripAdvisor Hotels 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/hotels?geo_id=294217&filter_id=ufe&class=5&price_min=1000&price_max=3205&pricing_mode=ALL_IN_RATE¤cy=HKD&offset=0&limit=3&sort=BEST_VALUE" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| geo_id | integer | Yes | 294217 | TripAdvisor geo id |
| filter_id | string | No | ufe | Optional filter id such as class or ufe |
| class | integer | No | 5 | Hotel class filter |
| amenities | array | No | Amenity filter ids | |
| price_min | integer | No | 1000 | Minimum price filter |
| price_max | integer | No | 3205 | Maximum price filter |
| pricing_mode | string | No | ALL_IN_RATE | Pricing mode |
| travelers_choice | boolean | No | Filter Travelers' Choice properties | |
| travelers_choice_botb | boolean | No | Filter Best of the Best properties | |
| currency | string | No | HKD | Currency code |
| offset | integer | No | 0 | Zero-based result offset |
| limit | integer | No | 3 | Maximum results |
| sort | string | No | BEST_VALUE | Sort value |
{
"code": 200,
"msg": "OK",
"data": {
"geo_id": 294217,
"currency": "HKD",
"offset": 0,
"limit": 3,
"sort": "BEST_VALUE",
"total": 519,
"full_matches": 519,
"results": [
{
"id": "113311",
"title": "The Peninsula New York",
"type": "hotel",
"url": "https://www.tripadvisor.com/Hotel_Review-g60763-d113311-Reviews-The_Peninsula_New_York-New_York_City_New_York.html",
"image": "https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg",
"rating": 4.5,
"review_count": 1517,
"star_rating": 5,
"rank": 146,
"rank_label": "#141 of 519 hotels in New York City",
"price": "HK$7,793",
"provider": "Agoda",
"currency": "HKD",
"parent": "New York City"
}
]
}
}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 hotel listing results from public credential-free GraphQL listing data.
{
"code": 200,
"msg": "OK",
"data": {
"geo_id": 294217,
"currency": "HKD",
"offset": 0,
"limit": 3,
"sort": "BEST_VALUE",
"total": 519,
"full_matches": 519,
"results": [
{
"id": "113311",
"title": "The Peninsula New York",
"type": "hotel",
"url": "https://www.tripadvisor.com/Hotel_Review-g60763-d113311-Reviews-The_Peninsula_New_York-New_York_City_New_York.html",
"image": "https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg",
"rating": 4.5,
"review_count": 1517,
"star_rating": 5,
"rank": 146,
"rank_label": "#141 of 519 hotels in New York City",
"price": "HK$7,793",
"provider": "Agoda",
"currency": "HKD",
"parent": "New York City"
}
]
}
}curl "https://api.crawlora.net/api/v1/tripadvisor/hotels?geo_id=<geo_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"