## booking/hotel

`GET /v1/booking/hotel`

One hotel's page for a stay: address and position, type, the price with its per-night and all-inclusive figures, facilities and highlights, breakfast and Wi-Fi scores, sustainability tier, the important information, each room with its beds, facilities and photos, and every bookable offer with its cancellation and prepayment terms.

*Booking.com hotel*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | The hotel's number, from booking/search-hotels — e.g. `4045490` |
| `checkin` | yes | Check-in date, YYYY-MM-DD — e.g. `2026-10-10` |
| `checkout` | yes | Check-out date, YYYY-MM-DD — e.g. `2026-10-12` |
| `adults` | no | Adults, 1 to 30 — e.g. `2` |
| `children_ages` | no | Children's ages, separated by commas |
| `rooms` | no | Rooms, 1 to 30 — e.g. `1` |
| `currency` | no | Three-letter currency code — e.g. `GBP` |
| `language` | no | Language code for the site's text — e.g. `en-gb` |
| `units` | no | metric or imperial |
| `temperature_unit` | no | c or f |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 3 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/booking/hotel?id=4045490&checkin=2026-10-10&checkout=2026-10-12" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_warnings": [],
  "accommodation_type": "example",
  "address": "example",
  "available_rooms": 0,
  "breakfast_included": false,
  "breakfast_score": {
    "count": 0,
    "rating": 0,
    "word": "example"
  },
  "checkin_date": "2026-09-01T12:00:00Z",
  "checkout_date": "2026-09-01T12:00:00Z",
  "city": "example",
  "closed": false,
  "country_code": "example",
  "currency": "example",
  "destination_id": "example",
  "distance_to_centre_km": 0,
  "district": "example",
  "facilities": [
    "example"
  ],
  "family_facilities": [],
  "family_friendly": false,
  "highlights": [
    "example"
  ],
  "id": "example",
  "important_information": [
    "example"
  ],
  "languages_spoken": [
    "example"
  ],
  "latitude": 0,
  "longitude": 0,
  "max_rooms_per_booking": 0,
  "name": "example",
  "offers": [],
  "platform": "example",
  "postcode": "example",
  "review_count": 0,
  "rooms": [],
  "sold_out": false,
  "timezone": "example",
  "top_benefits": [
    "example"
  ],
  "type": "example",
  "url": "https://example.com/example",
  "wifi_score": 0
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/booking/hotel#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/booking/hotel.json)
