# Boat24 — 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 and browse over 35,000 boat listings across Europe's largest boat marketplace to find your ideal vessel. Retrieve detailed information about specific boats including prices, specifications, and seller details to compare options and make informed purchasing decisions.

**Category:** Marketplaces | **Website:** [boat24.com/](https://boat24.com/) | **Docs:** [parse.bot/marketplace/216ad238-da12-408a-8e12-adf1a1fc10e3/boat24-com-api](https://parse.bot/marketplace/216ad238-da12-408a-8e12-adf1a1fc10e3/boat24-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-boat24-com-api-216ad238/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing

Retrieve full details for a single boat listing by its numeric ID. Returns comprehensive specs, description, equipment list, images, seller info, and location. The listing ID is obtainable from search_listings results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Numeric listing ID (e.g. '711950' from search_listings results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-boat24-com-api-216ad238/get_listing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### search_listings

Search boat listings with optional filters for category, location, and free-text query. Returns paginated results (24 per page, zero-based) with summary info including title, price, dimensions, engine power, year, and location. Results are auto-iterated; the SDK walks pages automatically.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category filter by numeric ID. Omitting returns all categories. |
| `location` | string | No | Region/location ID to filter by (e.g. '2' for Germany, '24' for United Kingdom). |
| `page` | integer | No | Zero-based page number. |
| `query` | string | No | Free-text search query matching boat model, manufacturer, or listing ID. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-boat24-com-api-216ad238/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","location":"<string>","page":"<integer>","query":"<string>","sort":"<string>"}'
```
