# Booking.com Destinations

Fetches a lightweight Booking.com search page and returns the resolved destination URL, destination id, and destination type when Booking exposes them.

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

## 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 |
| --- | --- | --- | --- |
| `q` | string | Yes | Destination query, e.g. Paris or New York. |
| `lang` | string | No | UI 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/destinations?q=Paris&lang=en-us&currency=EUR"
```

## Example response

```json
{
    "data": {
        "suggestions": []
    }
}
```

## 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)
