# Watchcharts — 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 analyze luxury watch market data including current listings, historical price trends, and recent sales information. Get detailed watch specifications and track market pricing to make informed collecting or investment decisions.

**Category:** E-commerce | **Website:** [watchcharts.com/](https://watchcharts.com/) | **Docs:** [parse.bot/marketplace/9d5f0855-69c2-48c4-8337-007b5ce46968/watchcharts-com-api](https://parse.bot/marketplace/9d5f0855-69c2-48c4-8337-007b5ce46968/watchcharts-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-watchcharts-com-api-9d5f0855/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_watch_details

Get comprehensive market data for a specific watch model, including historical price trends (USD), current listings with sources and prices, and recent sales. Use watch IDs from list_watches results. The trend data includes daily price points with min/max ranges. Listings are grouped by status (active vs sold).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `watch_id` | string | Yes | Numeric watch model identifier from list_watches results (e.g. '727', '22557'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-watchcharts-com-api-9d5f0855/get_watch_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"watch_id":"<string>"}'
```

### list_watches

Browse the watch directory or filter by brand. Returns watch IDs, slugs, names, and current retail/market prices. When query is provided, it filters by brand name. Without query, returns the most popular watches across all brands. Results are paginated by page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Brand name to filter results. Supports multi-word brand names (e.g. 'patek philippe'). Omitting returns popular watches across all brands. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-watchcharts-com-api-9d5f0855/list_watches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```

### search_watches

Search for watch brands and model families using the WatchCharts suggestion API. Returns matching brands and models with metadata like image URLs, model counts, and brand hierarchy. Each brand result includes its parent brand relationship and the number of models within it.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search term for finding watch brands or model families. Supports multi-word queries (e.g. 'patek philippe', 'rolex submariner'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-watchcharts-com-api-9d5f0855/search_watches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
