# Chrono24 (United Kingdom) — 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 luxury watches on Chrono24 by brand, model, price range, and sort preferences to find detailed listings with pricing, location, and images. Get structured watch data to compare options and discover available timepieces across multiple sellers.

**Category:** Marketplaces | **Website:** [www.chrono24.co.uk/](https://www.chrono24.co.uk/) | **Docs:** [parse.bot/marketplace/9019800d-e725-4e2c-a641-7c5e059a3cfc/chrono24-co-uk-api](https://parse.bot/marketplace/9019800d-e725-4e2c-a641-7c5e059a3cfc/chrono24-co-uk-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-chrono24-co-uk-api-9019800d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_watches

Search watches on Chrono24 by keyword query with optional price range filters and sort order. Returns up to 60 watches per page with pagination. Each result includes the watch title, description, price in GBP, seller location, shipping info, listing URL, and image URL. Use the page parameter to paginate through results; total_pages indicates how many pages are available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | string | No | Page number for pagination (1-indexed). Each page returns up to 60 results. |
| `price_from` | string | No | Minimum price in GBP to filter results (e.g. '5000'). Omitting returns results with no lower price bound. |
| `price_to` | string | No | Maximum price in GBP to filter results (e.g. '20000'). Omitting returns results with no upper price bound. |
| `query` | string | Yes | Search query for watches, typically brand and/or model name (e.g. 'Rolex Daytona', 'Omega Speedmaster', 'Patek Philippe'). |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chrono24-co-uk-api-9019800d/search_watches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<string>","price_from":"<string>","price_to":"<string>","query":"<string>","sort":"<string>"}'
```
