Endpoint Playground
Test Crawlora's Expedia Stays property detail 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/detail" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| option (body) | object | Yes | Property detail payload |
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "111893452",
"name": "Kompose Boutique Hotel Miami Airport",
"star_rating": 3,
"vip_message": "VIP Access",
"address": "3401 NW 25th St, Miami, FL, 33142",
"city": "Miami",
"province": "FL",
"country_code": "USA",
"latitude": 25.799235,
"longitude": -80.25145,
"amenities": [
"Pool",
"Pet friendly",
"Free WiFi",
"Restaurant",
"Air conditioning",
"Gym"
]
}
}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 a hotel's detail summary (name, star rating, address/coordinates, top amenities) for a known property id.
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "111893452",
"name": "Kompose Boutique Hotel Miami Airport",
"star_rating": 3,
"vip_message": "VIP Access",
"address": "3401 NW 25th St, Miami, FL, 33142",
"city": "Miami",
"province": "FL",
"country_code": "USA",
"latitude": 25.799235,
"longitude": -80.25145,
"amenities": [
"Pool",
"Pet friendly",
"Free WiFi",
"Restaurant",
"Air conditioning",
"Gym"
]
}
}curl "https://api.crawlora.net/api/v1/expedia/properties/detail" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"