Endpoint Playground
Test Crawlora's Booking.com hotel reviews 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/reviews?hotel_id=<hotel_id>&hotel_country_code=<hotel_country_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| hotel_id | integer | Yes | Booking.com hotel id, from a prior search's property id | |
| destination_id | integer | No | Destination id (ufi), from a prior search response | |
| hotel_country_code | string | Yes | Hotel's country code, from a prior search response | |
| hotel_score | number | No | Hotel's overall review score | |
| search_text | string | No | Optional free-text search over review content | |
| page | integer | No | 1-based result page, default 1 | |
| limit | integer | No | Reviews per page, 1-25, default 10 |
{
"code": 200,
"data": {
"hotel_id": 1,
"page": 1,
"rating_scores": {},
"reviews": [
{
"checkin_date": "sample",
"checkout_date": "sample",
"customer_type": "sample",
"helpful_votes_count": 1,
"language": "sample",
"negative_text": "sample",
"num_nights": 1,
"positive_text": "sample",
"review_url": "https://example.com/resource",
"reviewed_date": "sample",
"reviewer_country": "sample",
"reviewer_name": "sample",
"reviewer_review_count": 1,
"room_type": "sample",
"score": 1.23,
"stay_status": "ok",
"title": "sample"
}
],
"reviews_count": 1,
"search_text": "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 normalized guest reviews for a Booking.com hotel, with an optional free-text search over review content.
{
"code": 200,
"data": {
"hotel_id": 1,
"page": 1,
"rating_scores": {},
"reviews": [
{
"checkin_date": "sample",
"checkout_date": "sample",
"customer_type": "sample",
"helpful_votes_count": 1,
"language": "sample",
"negative_text": "sample",
"num_nights": 1,
"positive_text": "sample",
"review_url": "https://example.com/resource",
"reviewed_date": "sample",
"reviewer_country": "sample",
"reviewer_name": "sample",
"reviewer_review_count": 1,
"room_type": "sample",
"score": 1.23,
"stay_status": "ok",
"title": "sample"
}
],
"reviews_count": 1,
"search_text": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/booking/reviews?hotel_id=<hotel_id>&hotel_country_code=<hotel_country_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"