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

> Find the perfect tyres for your vehicle by entering your registration number, and instantly access your vehicle details, available tyre sizes, and a complete list of matching tyres with pricing and EU safety ratings. Simplify your tyre shopping by getting all the information you need in one search.

**Category:** Automotive | **Website:** [blackcircles.com/](https://blackcircles.com/) | **Docs:** [parse.bot/marketplace/23511ab6-e003-4b46-8f5f-8ea2cb72b942/blackcircles-com-api](https://parse.bot/marketplace/23511ab6-e003-4b46-8f5f-8ea2cb72b942/blackcircles-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-blackcircles-com-api-23511ab6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_tyres_by_vehicle

Searches for tyres by UK vehicle registration number and postcode. First looks up the vehicle to determine compatible tyre sizes, then returns tyre listings for the first available size. Results include fully fitted prices, EU tyre label ratings (fuel efficiency, wet grip, noise), season type, and run-flat status. Returns a single composite result containing vehicle details and all matching tyres (typically 15-25 per size).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `postcode` | string | Yes | UK postcode for local fitting availability and pricing (e.g. EH1 1BE, L1 8JQ). |
| `registration` | string | Yes | UK vehicle registration number (e.g. SP55ZXL, BD51SMR). Letters and numbers only, no spaces required. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blackcircles-com-api-23511ab6/search_tyres_by_vehicle \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"postcode":"<string>","registration":"<string>"}'
```
