Endpoint Playground
Test Crawlora's Hotels.com property 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/hotels/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| request (body) | object | Yes | Reviews request |
{
"code": 200,
"data": {
"categories": [
{
"name": "sample",
"score": "sample"
}
],
"overall_rating": "sample",
"property_id": "sample-id",
"reviews": [
{
"date": "sample",
"message": "sample",
"rating_label": "sample",
"reviewer_name": "sample",
"verified": true
}
],
"superlative": "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 one Hotels.com property's review overview: the overall rating (0-10) with its descriptive label, the per-category sub-ratings (cleanliness, service, amenities, and so on), and a bounded set of highlighted guest reviews with reviewer, date, rating label, text, and verified-stay flag. property_id is the numeric global property id from a Search response's properties[].id. This mirrors the property page's Guest reviews section; the full paginated review archive is not exposed.
{
"code": 200,
"data": {
"categories": [
{
"name": "sample",
"score": "sample"
}
],
"overall_rating": "sample",
"property_id": "sample-id",
"reviews": [
{
"date": "sample",
"message": "sample",
"rating_label": "sample",
"reviewer_name": "sample",
"verified": true
}
],
"superlative": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/hotels/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"