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

> Look up dog show judges by name or ID to view their profile details, including the breeds they're qualified to judge and their certification levels. Find the right expert judge for your kennel club event with instant access to their specializations and credentials.

**Category:** Other | **Website:** [www.royalkennelclub.com/search/find-a-judge/judge-profile/?judgeId=ac48fdc7-493e-eb11-a813-0022481a79ad](https://www.royalkennelclub.com/search/find-a-judge/judge-profile/?judgeId=ac48fdc7-493e-eb11-a813-0022481a79ad) | **Docs:** [parse.bot/marketplace/0c12f7f7-6aec-4b81-8d21-52072ef92ae7/royalkennelclub-com-api](https://parse.bot/marketplace/0c12f7f7-6aec-4b81-8d21-52072ef92ae7/royalkennelclub-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-royalkennelclub-com-api-0c12f7f7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_judge_profile

Retrieve a judge's profile from the Royal Kennel Club. Accepts either a judge_id (UUID) for a direct profile lookup, or a name (last name) to search for matching judges. When judge_id is provided, returns the full profile including all breeds judged with their group and level. When name is provided, returns a list of matching judges with their IDs and locations. One of judge_id or name must be provided.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `judge_id` | string | No | UUID identifier for a specific judge (e.g. 'ac48fdc7-493e-eb11-a813-0022481a79ad'). When provided, returns the full judge profile directly. |
| `name` | string | No | Judge's last name for searching. Returns all judges matching this name. Use the judge_id from results to fetch the full profile. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-royalkennelclub-com-api-0c12f7f7/get_judge_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"judge_id":"<string>","name":"<string>"}'
```
