## booking/hotel-reviews

`GET /v1/booking/hotel-reviews`

Guest reviews of one hotel: title, what they liked and disliked, score, date, purpose of travel, the reviewer's country and traveller type, the room and nights they stayed, photos and the hotel's reply.

*Booking.com hotel reviews*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | The hotel's number, from booking/search-hotels — e.g. `4045490` |
| `page` | no | Page number (25 a page) — e.g. `1` |
| `sort` | no | relevant, newest, oldest, highest or lowest — e.g. `relevant` |
| `language` | no | Language code for the site's text — e.g. `en-us` |
| `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-reviews?id=4045490" \
  -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
{
  "count": 0,
  "has_more": false,
  "hotel_id": "example",
  "items": [
    {
      "author": {
        "avatar_url": "https://example.com/example",
        "country_code": "example",
        "name": "example",
        "reviews": 0,
        "type": "example"
      },
      "cons": "example",
      "date": "2026-09-01T12:00:00Z",
      "helpful_votes": 0,
      "hotel_id": "example",
      "hotelier_response": "example",
      "hotelier_response_date": "2026-09-01T12:00:00Z",
      "id": "example",
      "incentivised": false,
      "language": "example",
      "moderated": false,
      "photos": [],
      "platform": "example",
      "pros": "example",
      "score": 0,
      "stay": {
        "checkin": "example",
        "checkout": "example",
        "nights": 0,
        "room": "example"
      },
      "tags": [],
      "title": "example",
      "travel_purpose": "example",
      "type": "example"
    }
  ],
  "page": 0,
  "total": 0
}
```

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