Endpoint Playground
Test Crawlora's Hotels.com property rates 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/rates" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| request (body) | object | Yes | Rates request |
{
"code": 200,
"data": {
"check_in": "sample",
"check_out": "sample",
"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"
}
],
"property_id": "sample-id"
},
"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 date-bound rates and availability: the same normalized property card Search returns, with the live per-night and per-stay prices Hotels.com shows for the requested dates. property_id is the numeric global property id from a Search response's properties[].id; it is distinct from the legacy /ho<id>/ URL id.
{
"code": 200,
"data": {
"check_in": "sample",
"check_out": "sample",
"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"
}
],
"property_id": "sample-id"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/hotels/rates" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"