Endpoint Playground
Test Crawlora's Hotels.com room offers 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/hotels/offers" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| request (body) | object | Yes | Room offers request |
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "19681371",
"check_in": "2026-09-10",
"check_out": "2026-09-11",
"header": "Room options",
"offers": [
{
"id": "unit-1",
"name": "King Room",
"messages": [
"Free cancellation"
]
}
]
}
}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 public room/unit offer summaries shown for one Hotels.com property and date range, including room labels and non-transactional offer messages. Booking, checkout, payment, and reservation tokens are never returned. property_id is the numeric global property id from a Search response.
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "19681371",
"check_in": "2026-09-10",
"check_out": "2026-09-11",
"header": "Room options",
"offers": [
{
"id": "unit-1",
"name": "King Room",
"messages": [
"Free cancellation"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/hotels/offers" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"