# Booking — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for accommodations across Booking.com and instantly access detailed property information including pricing, amenities, and guest reviews to compare your options. Find the perfect stay by filtering thousands of listings and retrieving comprehensive details like room descriptions, availability, and booking terms all in one place.

**Category:** Travel | **Website:** [booking.com/](https://booking.com/) | **Docs:** [parse.bot/marketplace/1b6d7b2e-b44f-4a47-ae1c-0a2ab49b7603/booking-com-api](https://parse.bot/marketplace/1b6d7b2e-b44f-4a47-ae1c-0a2ab49b7603/booking-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-booking-com-api-1b6d7b2e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_property_details

Retrieve basic details for a specific property using its Booking.com URL. Returns the property name, address, and description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | The Booking.com property URL (e.g. https://www.booking.com/hotel/fr/opale-noire.html) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-booking-com-api-1b6d7b2e/get_property_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_properties

Search for properties on Booking.com by destination, dates, and guest configuration. Returns paginated results with property names, URLs, prices, and ratings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adults |
| `checkin` | string | Yes | Check-in date in ISO format YYYY-MM-DD |
| `checkout` | string | Yes | Check-out date in ISO format YYYY-MM-DD |
| `destination` | string | Yes | Search destination (city, region, or property name) |
| `offset` | integer | No | Results offset for pagination (increments of 25) |
| `rooms` | integer | No | Number of rooms |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-booking-com-api-1b6d7b2e/search_properties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adults":"<integer>","checkin":"<string>","checkout":"<string>","destination":"<string>","offset":"<integer>","rooms":"<integer>"}'
```
