# Thewatchpages — 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.

> Browse current luxury watch collections from top brands and access detailed product information including reference numbers, model names, retail prices, and direct product links. Find exactly what you're looking for across multiple luxury watchmakers in one unified platform.

**Category:** E-commerce | **Website:** [www.thewatchpages.com/watches/patek-philippe-watches/?collection_status=current](https://www.thewatchpages.com/watches/patek-philippe-watches/?collection_status=current) | **Docs:** [parse.bot/marketplace/fd00b956-56bb-44b0-969d-2b711a1172cd/thewatchpages-com-api](https://parse.bot/marketplace/fd00b956-56bb-44b0-969d-2b711a1172cd/thewatchpages-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-thewatchpages-com-api-fd00b956/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_brand_watches

Retrieves all watches in a brand's current production collection. Paginates through all results automatically to return the complete set. Each watch includes its reference number, model/collection name, retail price (RRP/MSRP) when shown, and the product detail URL. Results are ordered by the site's default sort (newest first).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | Yes | Brand slug in lowercase with hyphens. Known working values include: patek-philippe, rolex, audemars-piguet, vacheron-constantin, omega, cartier, tudor, iwc, jaeger-lecoultre, breitling. |
| `collection_status` | string | No | Filter by collection status. When set to 'current', returns only watches in the brand's current production lineup. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thewatchpages-com-api-fd00b956/list_brand_watches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","collection_status":"<string>"}'
```

### list_brand_watches_map

Retrieves all watches in a brand's current production collection as a JSON object keyed by reference number. Each value is formatted as 'model_name || price' (empty string substituted when price is unavailable). Paginates through all site pages server-side before building the map, so the result always contains every watch. Useful for direct lookup by reference without scanning an array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | Yes | Brand slug in lowercase with hyphens. Known working values include: patek-philippe, rolex, audemars-piguet, vacheron-constantin, omega, cartier, tudor, iwc, jaeger-lecoultre, breitling. |
| `collection_status` | string | No | Filter by collection status. When set to 'current', returns only watches in the brand's current production lineup. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thewatchpages-com-api-fd00b956/list_brand_watches_map \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","collection_status":"<string>"}'
```

### list_brand_watches_text

Retrieves watches in a brand's current production collection as a paginated plain-text string. Each watch is formatted as 'reference || model_name || price' on its own line, with an empty string substituted when price is unavailable. Returns one page at a time with pagination metadata. Useful when the complete list must be preserved in a single text field without JSON array truncation.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | Yes | Brand slug in lowercase with hyphens. Known working values include: patek-philippe, rolex, audemars-piguet, vacheron-constantin, omega, cartier, tudor, iwc, jaeger-lecoultre, breitling. |
| `collection_status` | string | No | Filter by collection status. When set to 'current', returns only watches in the brand's current production lineup. |
| `page` | integer | No | 1-based page number for paginating through the text output. |
| `page_size` | integer | No | Number of watches per page. Must be between 1 and 50. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thewatchpages-com-api-fd00b956/list_brand_watches_text \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","collection_status":"<string>","page":"<integer>","page_size":"<integer>"}'
```
