# KAYAK Live Car Search

Search live car offers for the qualified airport, date, time, sort, and price inputs.

- **Documentation:** [https://scrappa.co/docs/kayak-api/kayak_cars_search](https://scrappa.co/docs/kayak-api/kayak_cars_search)
- **API group:** KAYAK API
- **Endpoint:** `GET https://scrappa.co/api/kayak/cars/search`

## 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 |
| --- | --- | --- | --- |
| `pickup` | string | Yes | See the endpoint contract for the qualified value format and supported range. |
| `pickup_date` | string | Yes | See the endpoint contract for the qualified value format and supported range. |
| `dropoff_date` | string | Yes | See the endpoint contract for the qualified value format and supported range. |
| `pickup_hour` | number | No | See the endpoint contract for the qualified value format and supported range. |
| `dropoff_hour` | number | No | See the endpoint contract for the qualified value format and supported range. |
| `sort` | string | No | See the endpoint contract for the qualified value format and supported range. |
| `price_mode` | string | No | 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/cars/search?pickup=LAS&pickup_date=2026-10-07&dropoff_date=2026-10-11"
```

## Example response

```json
{
    "success": true,
    "operation": "cars.search",
    "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)
