Endpoint Playground
Test Crawlora's Hotels.com hotel search 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/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| request (body) | object | Yes | Search request |
{
"code": 200,
"data": {
"check_in": "sample",
"check_out": "sample",
"destination": "sample",
"page": 1,
"properties": [
{
"amenities": [
"sample"
],
"badges": [
"sample"
],
"id": "sample-id",
"location": "sample",
"name": "sample",
"nightly_price": "sample",
"price": "sample",
"review_count": 1,
"review_score": 1.23,
"review_title": "sample",
"strikeout_price": "sample",
"thumbnail_url": "https://example.com/resource",
"url": "https://example.com/resource"
}
],
"region_id": "sample-id",
"results_label": "sample"
},
"msg": "OK"
}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 page of date-bound Hotels.com hotel search results for either a free-text destination or a numeric Hotels.com region_id: normalized property cards with per-night and per-stay prices, review score and count, location, thumbnail, amenities, and promotional badges. Provide exactly one of query or region_id; region_id skips destination typeahead resolution. Prices are the live rates Hotels.com shows for the requested check-in and check-out dates.
{
"code": 200,
"data": {
"check_in": "sample",
"check_out": "sample",
"destination": "sample",
"page": 1,
"properties": [
{
"amenities": [
"sample"
],
"badges": [
"sample"
],
"id": "sample-id",
"location": "sample",
"name": "sample",
"nightly_price": "sample",
"price": "sample",
"review_count": 1,
"review_score": 1.23,
"review_title": "sample",
"strikeout_price": "sample",
"thumbnail_url": "https://example.com/resource",
"url": "https://example.com/resource"
}
],
"region_id": "sample-id",
"results_label": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/hotels/search" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"