Endpoint Playground
Test Crawlora's TripAdvisor Enums 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/enums" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"locales": [
"en-HK",
"en-US",
"en-GB"
],
"currencies": [
"HKD",
"USD",
"EUR"
],
"languages": [
"en",
"fr",
"zh-CN"
],
"listing_types": [
"hotel",
"restaurant",
"attraction"
],
"attraction_categories": [
"attraction",
"tour",
"day_trip"
],
"hotel_classes": [
1,
2,
3,
4,
5
],
"filter_ids": [
"class",
"ufe"
]
}
}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 supported TripAdvisor enum values for place/listing filters, including locales, currencies, languages, listing types, filters, amenities, and category ids.
{
"code": 200,
"msg": "OK",
"data": {
"locales": [
"en-HK",
"en-US",
"en-GB"
],
"currencies": [
"HKD",
"USD",
"EUR"
],
"languages": [
"en",
"fr",
"zh-CN"
],
"listing_types": [
"hotel",
"restaurant",
"attraction"
],
"attraction_categories": [
"attraction",
"tour",
"day_trip"
],
"hotel_classes": [
1,
2,
3,
4,
5
],
"filter_ids": [
"class",
"ufe"
]
}
}curl "https://api.crawlora.net/api/v1/tripadvisor/enums" \
-H "x-api-key: $CRAWLORA_API_KEY"