Endpoint Playground
Test Crawlora's Search Expedia destinations 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/expedia/locations/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| option (body) | object | Yes | Location search payload |
{
"code": 200,
"msg": "OK",
"data": {
"term": "Miami",
"items": [
{
"type": "SearchLocationBasicItem",
"geo_type": "CITY",
"primary_text": "Miami",
"secondary_text": "Florida, United States",
"location_full_name": "Miami, FL, United States",
"region_id": "178289",
"latitude": 25.77427,
"longitude": -80.19366
}
]
}
}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 destination/property typeahead suggestions (cities, airports, neighborhoods, hotels) for a free-text term.
{
"code": 200,
"msg": "OK",
"data": {
"term": "Miami",
"items": [
{
"type": "SearchLocationBasicItem",
"geo_type": "CITY",
"primary_text": "Miami",
"secondary_text": "Florida, United States",
"location_full_name": "Miami, FL, United States",
"region_id": "178289",
"latitude": 25.77427,
"longitude": -80.19366
}
]
}
}curl "https://api.crawlora.net/api/v1/expedia/locations/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"