Endpoint Playground
Test Crawlora's Expedia search filters 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/properties/filters" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| option (body) | object | Yes | Property filters payload |
{
"code": 200,
"msg": "OK",
"data": {
"destination": "Miami, Florida, United States of America",
"region_id": "2297",
"sections": [
{
"title": "Filter by",
"fields": [
{
"type": "range",
"label": "Nightly price",
"range_min": 0,
"range_max": 1000
},
{
"type": "multi_select",
"label": "Popular filters",
"options": [
{
"filter_id": "amenities",
"value": "92",
"label": "Airport shuttle included (92)"
}
]
}
]
}
],
"sort_options": [
{
"filter_id": "sort",
"value": "RECOMMENDED",
"label": "Recommended for you",
"selected": true
}
]
}
}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 the sort and filter facets (amenities, star rating, neighborhood, nightly price range, sort options) available for a Stays search.
{
"code": 200,
"msg": "OK",
"data": {
"destination": "Miami, Florida, United States of America",
"region_id": "2297",
"sections": [
{
"title": "Filter by",
"fields": [
{
"type": "range",
"label": "Nightly price",
"range_min": 0,
"range_max": 1000
},
{
"type": "multi_select",
"label": "Popular filters",
"options": [
{
"filter_id": "amenities",
"value": "92",
"label": "Airport shuttle included (92)"
}
]
}
]
}
],
"sort_options": [
{
"filter_id": "sort",
"value": "RECOMMENDED",
"label": "Recommended for you",
"selected": true
}
]
}
}curl "https://api.crawlora.net/api/v1/expedia/properties/filters" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"