# Boats — 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 millions of yacht and boat listings by your preferred criteria, then view detailed specifications, pricing, and direct seller contact information for any boat that interests you. Find your perfect vessel with comprehensive boat data all in one place.

**Category:** Marketplaces | **Website:** [boats.com/](https://boats.com/) | **Docs:** [parse.bot/marketplace/42773eeb-c788-43ec-b215-0f3af4ff9e4d/boats-com-api](https://parse.bot/marketplace/42773eeb-c788-43ec-b215-0f3af4ff9e4d/boats-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-boats-com-api-42773eeb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_boat_details

Retrieve full details for a specific boat listing including specifications, pricing, seller contact information, and full description text. Requires the listing URL (obtainable from search_boats results). Returns specs as key-value pairs covering make, model, year, dimensions, engine details, and more.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL or path of the boat listing detail page (e.g. 'https://www.boats.com/power-boats/2020-carver-c52-10090371/'). |

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

### search_boats

Search for boat listings with filters on type, condition, manufacturer, and year range. Returns a paginated list of matching boats with summary info (title, price, year, location, image). Each page contains up to ~24 listings. Use the listing URL from results to fetch full details via get_boat_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `boat_type` | string | No | Type of boat to filter by. |
| `condition` | string | No | Condition of the boat. |
| `make` | string | No | Boat manufacturer/make as a lowercase slug (e.g. 'boston-whaler', 'tracker', 'sea-ray'). |
| `page` | integer | No | Page number for pagination. |
| `year_from` | integer | No | Minimum year of manufacture. |
| `year_to` | integer | No | Maximum year of manufacture. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-boats-com-api-42773eeb/search_boats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"boat_type":"<string>","condition":"<string>","make":"<string>","page":"<integer>","year_from":"<integer>","year_to":"<integer>"}'
```
