Endpoint Playground
Test Crawlora's TripAdvisor Autocomplete 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/autocomplete?q=hong+kong&limit=5&locale=en-HK&scope_geo_id=294217&type=attraction" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | hong kong | Autocomplete query |
| limit | integer | No | 5 | Maximum results |
| locale | string | No | en-HK | TripAdvisor locale |
| scope_geo_id | integer | No | 294217 | Optional scoped geo id |
| type | string | No | attraction | Optional result type hint |
| search_session_id | string | No | Optional captured search session id | |
| typeahead_id | string | No | Optional captured typeahead id | |
| route_uid | string | No | Optional captured route uid |
{
"code": 200,
"msg": "OK",
"data": {
"query": "california",
"locale": "en-HK",
"scope_geo_id": 294217,
"results": [
{
"id": "28926",
"document_id": "loc;28926;g28926",
"title": "California",
"type": "geo",
"url": "https://www.tripadvisor.com/Tourism-g28926-California-Vacations.html",
"image": "https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg",
"parent": "United States, North America",
"latitude": 37.511375,
"longitude": -121.07013,
"nested_results": [
{
"title": "Things to Do",
"type": "attraction_search",
"query": "california things to do",
"url": "https://www.tripadvisor.com/Attractions-g28926-Activities-California.html"
}
]
}
]
}
}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 typeahead candidates from the credential-free GraphQL endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"query": "california",
"locale": "en-HK",
"scope_geo_id": 294217,
"results": [
{
"id": "28926",
"document_id": "loc;28926;g28926",
"title": "California",
"type": "geo",
"url": "https://www.tripadvisor.com/Tourism-g28926-California-Vacations.html",
"image": "https://dynamic-media-cdn.tripadvisor.com/media/photo.jpg",
"parent": "United States, North America",
"latitude": 37.511375,
"longitude": -121.07013,
"nested_results": [
{
"title": "Things to Do",
"type": "attraction_search",
"query": "california things to do",
"url": "https://www.tripadvisor.com/Attractions-g28926-Activities-California.html"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/tripadvisor/autocomplete?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"