Endpoint Playground
Test Crawlora's Search Expedia Stays properties 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/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| option (body) | object | Yes | Property search payload |
{
"code": 200,
"msg": "OK",
"data": {
"destination": "Miami, Florida, United States of America",
"region_id": "2297",
"check_in": "2026-08-04",
"check_out": "2026-08-05",
"page": 1,
"results_label": "300+ properties",
"properties": [
{
"id": "111893452",
"name": "Kompose Boutique Hotel Miami Airport",
"url": "https://www.expedia.com/Miami-Hotels-Kompose-Boutique-Hotel-Miami-Airport.h111893452.Hotel-Information",
"review_score": 9.2,
"review_count": 4460,
"review_title": "Wonderful",
"price": "$72 total",
"strikeout_price": "$94",
"nightly_price": "$53 nightly",
"thumbnail_url": "https://images.trvl-media.com/lodging/112000000/111900000/111893500/111893452/5069ea21.jpg",
"amenities": [
"Pool"
],
"badges": [
"VIP Access",
"Member Price $22 off"
]
}
]
}
}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 Expedia Stays (hotel) search results for a free-text destination and date range.
{
"code": 200,
"msg": "OK",
"data": {
"destination": "Miami, Florida, United States of America",
"region_id": "2297",
"check_in": "2026-08-04",
"check_out": "2026-08-05",
"page": 1,
"results_label": "300+ properties",
"properties": [
{
"id": "111893452",
"name": "Kompose Boutique Hotel Miami Airport",
"url": "https://www.expedia.com/Miami-Hotels-Kompose-Boutique-Hotel-Miami-Airport.h111893452.Hotel-Information",
"review_score": 9.2,
"review_count": 4460,
"review_title": "Wonderful",
"price": "$72 total",
"strikeout_price": "$94",
"nightly_price": "$53 nightly",
"thumbnail_url": "https://images.trvl-media.com/lodging/112000000/111900000/111893500/111893452/5069ea21.jpg",
"amenities": [
"Pool"
],
"badges": [
"VIP Access",
"Member Price $22 off"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/expedia/properties/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"