Endpoint Playground
Test Crawlora's Hotels.com review archive 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/archive" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| request (body) | object | Yes | Review archive request |
{
"code": 200,
"data": {
"has_more": true,
"page": 1,
"page_size": 1,
"property_id": "sample-id",
"reviews": [
{
"date": "sample",
"id": "sample-id",
"message": "sample",
"rating_label": "sample",
"reviewer_name": "sample",
"title": "sample",
"traveler_type": "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 page of public guest reviews for a Hotels.com property, including reviewer, date, traveler type, rating label, title, and message. Use page and page_size to walk the archive; the response reports whether another page is available. property_id is the numeric global property id from a Search response's properties[].id. Booking, account, and private review data are not included.
{
"code": 200,
"data": {
"has_more": true,
"page": 1,
"page_size": 1,
"property_id": "sample-id",
"reviews": [
{
"date": "sample",
"id": "sample-id",
"message": "sample",
"rating_label": "sample",
"reviewer_name": "sample",
"title": "sample",
"traveler_type": "sample"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/hotels/reviews/archive" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"