# Companies House Developer — 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 registered companies and retrieve detailed information including company profiles, officer names, and their dates of birth. Access comprehensive corporate records directly from the official Companies House register to verify business details and identify key personnel.

**Category:** Government & Public Data | **Website:** [developer.company-information.service.gov.uk/manage-applications/6a53837b4b33beb226b5699c/view/live#](https://developer.company-information.service.gov.uk/manage-applications/6a53837b4b33beb226b5699c/view/live#) | **Docs:** [parse.bot/marketplace/b34d2dbd-dcf5-4469-8d3b-64614f5bba36/developer-company-information-service-gov-uk-api](https://parse.bot/marketplace/b34d2dbd-dcf5-4469-8d3b-64614f5bba36/developer-company-information-service-gov-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-developer-company-information-service-gov-uk-api-b34d2dbd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Retrieve detailed information for a specific company by its Companies House number, including registered address, status, type, incorporation date, and SIC codes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_number` | string | Yes | Companies House company number (e.g. '03824658', 'NI022564', 'SC694955'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developer-company-information-service-gov-uk-api-b34d2dbd/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_number":"<string>"}'
```

### get_company_officers

Retrieve officers (directors, secretaries) for a specific company. Directors include date of birth (month and year), nationality, country of residence, and appointment dates. Useful for identifying company leadership and their ages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_number` | string | Yes | Companies House company number (e.g. '03824658', 'NI022564', 'SC694955'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developer-company-information-service-gov-uk-api-b34d2dbd/get_company_officers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_number":"<string>"}'
```

### search_companies

Advanced search of the Companies House register by company name, status, type, SIC codes, location, and incorporation date range. Returns paginated results with up to 20 companies per page. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_name` | string | No | Company name to search for (partial match). At least one of company_name, sic_codes, or location must be provided. |
| `company_status` | string | No | Filter by company status. |
| `company_type` | string | No | Filter by company type. |
| `incorporation_from_year` | string | No | Filter companies incorporated from this year onwards (4-digit year, e.g. '1990'). |
| `incorporation_to_year` | string | No | Filter companies incorporated up to this year (4-digit year, e.g. '2000'). |
| `location` | string | No | Filter by registered office address (partial match, e.g. city or postcode). |
| `page` | integer | No | Page number for results pagination. |
| `sic_codes` | string | No | SIC code(s) to filter by (e.g. '62012' for business/domestic software development). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-developer-company-information-service-gov-uk-api-b34d2dbd/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_name":"<string>","company_status":"<string>","company_type":"<string>","incorporation_from_year":"<string>","incorporation_to_year":"<string>","location":"<string>","page":"<integer>","sic_codes":"<string>"}'
```
