# Build a Watch Market App in 5 Minutes

MEW public endpoints are read-only and do not require an API key.

## 1. Inspect the source map

```bash
curl -s "https://mostexpensivewatches.net/developers/vibecoder-kit.json"
curl -s "https://mostexpensivewatches.net/api/schema.json"
curl -s "https://mostexpensivewatches.net/api/fields.json"
```

## 2. Search for a citable answer

```bash
curl -s "https://mostexpensivewatches.net/api/answers/search?q=5712&summary=1&limit=5"
```

## 3. Search localized review context

```bash
curl -s "https://mostexpensivewatches.net/api/reviews/search?q=5711&lang=es&limit=5"
```

## 4. Compare alternatives

```bash
curl -s "https://mostexpensivewatches.net/api/alternatives/search?q=5711&limit=8"
```

## 5. Resolve fuzzy user text

```bash
curl -s "https://mostexpensivewatches.net/api/references/resolve?q=Rolex%20Pepsi&limit=3"
```

## 6. Fetch live inventory

```bash
curl -s "https://mostexpensivewatches.net/api/listings/search?q=Royal%20Oak&limit=5"
```

## 7. Use the CLI

```bash
curl -sS https://mostexpensivewatches.net/cli/mew.py -o mew.py
python3 mew.py answers "5712" --summary --limit 5
python3 mew.py reviews "5711" --lang es --limit 5
python3 mew.py alternatives "5711" --limit 8
python3 mew.py search "Royal Oak" --limit 5
```

Guardrails:
- Cite canonical URLs returned by MEW payloads.
- Treat live listing prices as asking-price context, not appraisals.
- Use /api/references/resolve before model-specific claims.
- Route production, resale, bulk export or high-volume usage to https://mostexpensivewatches.net/data-licensing.
