# KAYAK Explore Destinations

Return live destination ideas within the qualified dates, bounds, stops, and duration inputs.

- **Documentation:** [https://scrappa.co/docs/kayak-api/kayak_explore_destinations](https://scrappa.co/docs/kayak-api/kayak_explore_destinations)
- **API group:** KAYAK API
- **Endpoint:** `GET https://scrappa.co/api/kayak/explore/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 |
| --- | --- | --- | --- |
| `origin` | string | Yes | See the endpoint contract for the qualified value format and supported range. |
| `departure_from` | string | Yes | See the endpoint contract for the qualified value format and supported range. |
| `departure_to` | string | Yes | See the endpoint contract for the qualified value format and supported range. |
| `return_from` | string | Yes | See the endpoint contract for the qualified value format and supported range. |
| `return_to` | string | Yes | See the endpoint contract for the qualified value format and supported range. |
| `min_days` | number | No | See the endpoint contract for the qualified value format and supported range. |
| `max_days` | number | No | See the endpoint contract for the qualified value format and supported range. |
| `stops` | number | No | See the endpoint contract for the qualified value format and supported range. |
| `north_east_lat` | number | Yes | See the endpoint contract for the qualified value format and supported range. |
| `north_east_lng` | number | Yes | See the endpoint contract for the qualified value format and supported range. |
| `south_west_lat` | number | Yes | See the endpoint contract for the qualified value format and supported range. |
| `south_west_lng` | number | Yes | See the endpoint contract for the qualified value format and supported range. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/kayak/explore/destinations?origin=ICT&departure_from=2026-09-22&departure_to=2026-10-22&return_from=2026-09-23&return_to=2026-11-21&north_east_lat=43.12&north_east_lng=-81.81&south_west_lat=31.75&south_west_lng=-113.06"
```

## Example response

```json
{
    "success": true,
    "operation": "explore.destinations",
    "data": {
        "results": [],
        "search_state": [],
        "warnings": [],
        "provenance": {
            "provider": "KAYAK",
            "freshness": "live"
        },
        "source_data": {
            "kayak": []
        }
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 422 | Validation Error |  |
| 502 | Temporarily Unavailable |  |
| 503 | Capacity Unavailable |  |

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