## booking/hotel-rooms

`GET /v1/booking/hotel-rooms`

One hotel's rooms for a stay and every bookable offer on them: price with its per-night and all-inclusive figures, occupancy, size, meal plan, cancellation and prepayment terms, deposit, and how many are left.

*Booking.com rooms and offers*

| 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 |
| `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-rooms?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": [],
  "checkin": "example",
  "checkout": "example",
  "count": 0,
  "currency": "example",
  "hotel_id": "example",
  "max_rooms_per_booking": 0,
  "offers": [],
  "platform": "example",
  "rooms": [],
  "sold_out_rooms": [],
  "type": "example"
}
```

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