Endpoint Playground
Test Crawlora's Hotels.com property details 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/property" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| request (body) | object | Yes | Canonical Hotels.com property URL |
{
"code": 200,
"data": {
"property": {
"address": {
"country": "sample",
"locality": "sample",
"postal_code": "sample",
"region": "sample",
"street_address": "sample"
},
"amenities": [
"sample"
],
"description": "sample",
"guest_rating": 1.23,
"id": "sample-id",
"images": [
"sample"
],
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"review_count": 1,
"star_rating": 1.23,
"url": "https://example.com/resource"
}
},
"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 public static metadata from one canonical Hotels.com property page, including name, address, rating, images, and amenities. Date-bound availability, prices, booking, and review content are excluded.
{
"code": 200,
"data": {
"property": {
"address": {
"country": "sample",
"locality": "sample",
"postal_code": "sample",
"region": "sample",
"street_address": "sample"
},
"amenities": [
"sample"
],
"description": "sample",
"guest_rating": 1.23,
"id": "sample-id",
"images": [
"sample"
],
"latitude": 1.23,
"longitude": 1.23,
"name": "sample",
"review_count": 1,
"star_rating": 1.23,
"url": "https://example.com/resource"
}
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/hotels/property" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"