# The Kennel Club — 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.

> Access official breed information, standards, and registration details from The Kennel Club UK. Browse the complete list of recognised pedigree breeds, retrieve detailed breed characteristics and group classifications, look up official breed standards, and explore available registration forms and pricing.

**Category:** Other | **Website:** [thekennelclub.org.uk/](https://thekennelclub.org.uk/) | **Docs:** [parse.bot/marketplace/7c156e75-49cb-4e5e-afbe-19cb5753c734/thekennelclub-org-uk-api](https://parse.bot/marketplace/7c156e75-49cb-4e5e-afbe-19cb5753c734/thekennelclub-org-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-thekennelclub-org-uk-api-7c156e75/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_breed_detail

Retrieve detailed information for a specific breed including characteristics (size, exercise needs, grooming, lifespan, etc.) and about text. Requires both the breed slug and its group slug, available from get_breeds_list or search_breeds.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `breed_slug` | string | Yes | Breed slug identifier from get_breeds_list results (e.g. 'retriever-labrador', 'border-terrier'). |
| `group_slug` | string | Yes | Breed group slug from get_breeds_list results (e.g. 'gundog', 'terrier', 'toy', 'hound', 'working', 'pastoral', 'utility'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thekennelclub-org-uk-api-7c156e75/get_breed_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"breed_slug":"<string>","group_slug":"<string>"}'
```

### get_breed_standard

Retrieve the official breed standard document for a specific breed. Returns structured sections covering general appearance, temperament, physical characteristics, colour, size, and faults. Requires both breed slug and group slug.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `breed_slug` | string | Yes | Breed slug identifier from get_breeds_list results (e.g. 'retriever-labrador', 'border-terrier'). |
| `group_slug` | string | Yes | Breed group slug from get_breeds_list results (e.g. 'gundog', 'terrier', 'toy', 'hound', 'working', 'pastoral', 'utility'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thekennelclub-org-uk-api-7c156e75/get_breed_standard \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"breed_slug":"<string>","group_slug":"<string>"}'
```

### get_breeds_list

Retrieve the full list of pedigree breeds recognised by the Royal Kennel Club. Returns all 220+ breeds with their group classification and URL slugs. No filtering — use search_breeds for filtered results.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thekennelclub-org-uk-api-7c156e75/get_breeds_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_registration_forms

Retrieve the list of available dog registration forms and their current prices from the Royal Kennel Club shop. Returns all form types including standard registrations, transfers, and downloads.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thekennelclub-org-uk-api-7c156e75/get_registration_forms \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_breeds

Search and filter breeds by name and breed group. Filters the full breed list client-side based on the provided query and group parameters. At least one parameter should be provided for meaningful filtering; omitting both returns all breeds.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `group` | string | No | Filter by breed group name or slug (case-insensitive substring match, e.g. 'terrier', 'gundog', 'toy'). |
| `query` | string | No | Search term to filter breeds by name (case-insensitive substring match). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thekennelclub-org-uk-api-7c156e75/search_breeds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"group":"<string>","query":"<string>"}'
```
