## booking/hotel-review-scores

`GET /v1/booking/hotel-review-scores`

How one hotel's score breaks down: by traveller type and question (cleanliness, staff, location…) against the area's average, by score band, and the distribution of scores.

*Booking.com review scores*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | The hotel's number, from booking/search-hotels — e.g. `4045490` |
| `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:** 2 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-review-scores?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
{
  "_warnings": [],
  "bands": [
    {
      "count": 0,
      "from": 0,
      "percent": 0,
      "to": 0,
      "word": "example"
    }
  ],
  "by_traveller_type": [
    {
      "count": 0,
      "questions": [
        {}
      ],
      "score": 0,
      "since_year": 0,
      "traveller_type": "example"
    }
  ],
  "distribution": [
    {
      "count": 0,
      "percent": 0,
      "score": 0
    }
  ],
  "hotel_id": "example",
  "platform": "example",
  "type": "example"
}
```

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