> ## Documentation Index
> Fetch the complete documentation index at: https://lava.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Booking.com

> Booking.com hotel data via Apify.

Booking.com hotel data via Apify. Search accommodation by destination or URL and pull prices, ratings, addresses, review counts, and stars. Can exceed Booking's native 1000-result cap. Runs asynchronously: start a run, poll it, then fetch the rows from the Apify dataset endpoint by run id.

1 endpoint available through Lava's AI Gateway. See the [Booking.com API docs](https://docs.apify.com/api/v2) for full documentation.

<Info>Supports both **managed** (Lava's API keys) and **unmanaged** (bring your own credentials) mode.</Info>

## Endpoints

### Start a Booking.com scrape (async). Pass `search` (destination string, e.g. "Prague") OR `startUrls` (array of \{url} Booking.com URLs), plus `maxItems`. Set `maxItems` above 1000 to exceed Booking's native cap; `extractAdditionalHotelData` adds billed data. Returns a run object; the gateway polls it and bills the real run cost. Fetch rows from GET /v2/actor-runs/\{runId}/dataset/items.

**POST** `https://api.apify.com/v2/acts/voyager~booking-scraper/runs` — \$0.039 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.apify.com/v2/acts/voyager~booking-scraper/runs', {
      body: {
    "search": "Prague",
    "maxItems": 50,
    "currency": "USD",
    "language": "en-gb"
    },
    });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.apify.com%2Fv2%2Facts%2Fvoyager~booking-scraper%2Fruns" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"search":"Prague","maxItems":50,"currency":"USD","language":"en-gb"}'
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
