## booking/hotel-availability

`GET /v1/booking/hotel-availability`

The nights a hotel has available between two dates, each with its price and minimum stay.

*Booking.com nightly prices*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | The hotel's number, from booking/search-hotels — e.g. `4045490` |
| `from` | yes | First date, YYYY-MM-DD — e.g. `2026-12-20` |
| `to` | yes | Last date, YYYY-MM-DD — e.g. `2026-12-31` |
| `adults` | no | Adults, 1 to 30 — e.g. `2` |
| `rooms` | no | Rooms, 1 to 30 — e.g. `1` |
| `currency` | no | Three-letter currency code — e.g. `GBP` |
| `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-availability?id=4045490&from=2026-12-20&to=2026-12-31" \
  -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": [],
  "adults": 0,
  "count": 0,
  "currency": "example",
  "dates": [
    {
      "date": "2026-09-01T12:00:00Z",
      "min_stay": 0,
      "price": 0
    }
  ],
  "from": "example",
  "hotel_id": "example",
  "platform": "example",
  "rooms": 0,
  "to": "example",
  "type": "example"
}
```

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