# Solicitors Regulation Authority — 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 UK solicitors by name and retrieve their detailed registration information from the SRA register, including their SRA number and professional credentials. Browse through the complete solicitor directory to verify qualifications and find regulated legal professionals in the United Kingdom.

**Category:** Government & Public Data | **Website:** [www.sra.org.uk/consumers/register](https://www.sra.org.uk/consumers/register) | **Docs:** [parse.bot/marketplace/a0dd4a30-ad65-4714-996c-b7a876d2eba8/sra-org-uk-api](https://parse.bot/marketplace/a0dd4a30-ad65-4714-996c-b7a876d2eba8/sra-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-sra-org-uk-api-a0dd4a30/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### enumerate_persons

Enumerate solicitors by searching for a specific name word. Designed for systematic enumeration: search common first names and surnames, deduplicate by sra_number across calls. Returns up to 1000 results per name word. If capped_at_1000 is true, some matches are missing for that term.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Name word to enumerate (min 2 chars). Use common names like 'smith', 'john', 'patel', 'williams' |
| `page` | integer | No | Page number (1-indexed) |
| `page_size` | integer | No | Results per page (1-500) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sra-org-uk-api-a0dd4a30/enumerate_persons \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>","page":"<integer>","page_size":"<integer>"}'
```

### get_person_detail

Get detailed information for a specific solicitor by their SRA number. Returns name, authorisation details, type of lawyer, regulator, and regulatory record.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sra_number` | string | Yes | The SRA number of the person (e.g. '297428', '29874') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sra-org-uk-api-a0dd4a30/get_person_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sra_number":"<string>"}'
```

### search_persons

Search for solicitors (persons) in the SRA register. The search matches exact words within names (case-insensitive). Returns paginated results from up to 1000 matches per query. The SRA backend may be slow for very common surnames with large result sets.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-indexed) |
| `page_size` | integer | No | Results per page (1-500) |
| `query` | string | Yes | Name word to search for (min 2 chars). Matches exact words in solicitor names. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sra-org-uk-api-a0dd4a30/search_persons \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","query":"<string>"}'
```
