Endpoint Playground
Test Crawlora's Booking.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/booking/search?query=<query>&checkin=<checkin>&checkout=<checkout>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Destination name or city | |
| checkin | string | Yes | Check-in date, YYYY-MM-DD | |
| checkout | string | Yes | Check-out date, YYYY-MM-DD | |
| adults | integer | No | Number of adults, 1-9, default 2 | |
| rooms | integer | No | Number of rooms, 1-8, default 1 | |
| children | integer | No | Number of children, 0-9 | |
| page | integer | No | 1-based result page, default 1 |
{
"code": 200,
"data": {
"checkin": "sample",
"checkout": "sample",
"country": "sample",
"destination": "sample",
"destination_id": 1,
"page": 1,
"properties": [
{
"currency": "sample",
"distance": "sample",
"id": 1,
"location": "sample",
"name": "sample",
"photo_url": "https://example.com/resource",
"price": 1.23,
"review_count": 1,
"review_score": 1.23,
"slug": "sample",
"star_rating": 1.23,
"url": "https://example.com/resource"
}
],
"query": "sample",
"results_count": 1
},
"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 normalized Booking.com hotel search results for a destination and date range.
{
"code": 200,
"data": {
"checkin": "sample",
"checkout": "sample",
"country": "sample",
"destination": "sample",
"destination_id": 1,
"page": 1,
"properties": [
{
"currency": "sample",
"distance": "sample",
"id": 1,
"location": "sample",
"name": "sample",
"photo_url": "https://example.com/resource",
"price": 1.23,
"review_count": 1,
"review_score": 1.23,
"slug": "sample",
"star_rating": 1.23,
"url": "https://example.com/resource"
}
],
"query": "sample",
"results_count": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/booking/search?query=<query>&checkin=<checkin>&checkout=<checkout>" \
-H "x-api-key: $CRAWLORA_API_KEY"