# Booking.com Reviews

Returns paginated public review records exposed through Booking.com review pages. Pass either a full Booking.com hotel URL via "url", or a country + slug pair.

- **Documentation:** [https://scrappa.co/docs/booking-api/booking_reviews](https://scrappa.co/docs/booking-api/booking_reviews)
- **API group:** Booking.com API
- **Endpoint:** `GET https://scrappa.co/api/booking/reviews`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `url` | string | No | Full Booking.com hotel URL (e.g. https://www.booking.com/hotel/fr/ritz-paris.html). Either url OR (country + slug) is required. |
| `country` | string | No | 2-letter country code (e.g. fr, us, de). Used together with slug. |
| `slug` | string | No | Hotel slug from the Booking.com URL (e.g. ritz-paris). The trailing .html is optional. |
| `page` | integer | No | Review page number, 1-100. Defaults to 1. |
| `limit` | integer | No | Reviews per page, 1-25. Defaults to 10. |
| `sort` | string | No | Sort order: recent_desc, recent_asc, score_desc, or score_asc. Defaults to recent_desc. |
| `lang` | string | No | Review language hint (e.g. en-us, de). |
| `currency` | string | No | 3-letter currency code (e.g. EUR, USD). |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/booking/reviews?country=fr&slug=muguet&page=1&limit=10&sort=recent_desc&lang=en-us"
```

## Example response

```json
{
    "data": {
        "reviews": [],
        "pagination": []
    }
}
```

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
