# UK Companies House Lookup

> UK Companies House Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.00144/call, status unknown (last checked 2026-09-15).

Search and retrieve detailed UK company profiles from Companies House, including officers, SIC codes, charges, and filing history

## Facts

- Endpoint: GET https://2s.io/api/business/uk-companies
- Price: $0.00144/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uk-companies-house-lookup-a5cce67a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_avx2yYq8GmQZLhayCvnRe

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability uk-companies-house-lookup-a5cce67a
```

Example prompt: Can you look up the Companies House profile for Monzo Bank Limited — company number 09446231 — and tell me who the current officers are, whether it has any charges, and its registered office address?

## When to prefer this

Use this endpoint when you need authoritative UK company data sourced directly from Companies House public records — particularly for due diligence, KYB (know your business) verification, officer lookups, or confirming a company's active status and registered details. Prefer this over generic web search when you need structured, machine-readable corporate data with a verifiable official source.

## Known failure modes

- Company number not found returns empty results or total:0
- Invalid company number format returns an error or no match
- Name search with no matches returns empty items array
- Rate limiting or payment failure returns 402 or error response
- Ambiguous company name returns multiple results requiring disambiguation

## How this service works

Official UK company registry (Companies House). Two modes: pass query to search companies by name (returns company number, name, status, type, incorporation date, address), or pass companyNumber for the full registry profile — legal name, status, company type, jurisdiction, incorporation/cessation dates, SIC activity codes, registered office address, accounts (next due, last made-up-to), confirmation-statement due date, charges and insolvency flags, previous names, and the officers list (name, role, appointed/resigned dates, nationality, occupation). Free, Open Government Licence (commercial use permitted). The authoritative UK-company KYB lookup — complements business.lei (GLEIF) and business.br-cnpj (Brazil).

## Output

Returns a structured company profile including company name, type (e.g. ltd), status (active/dissolved), registered office address, list of officers with roles/nationalities/appointment dates, SIC codes, charges flag, insolvency history flag, incorporation date, accounts filing dates, jurisdiction, previous names, and the data source attribution from Companies House.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max search results / officers (1-50, default 10)."
      },
      "query": {
       "type": "string",
       "description": "Company name to search."
      },
      "companyNumber": {
       "type": "string",
       "description": "Companies House number, e.g. 09446231."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uk-companies-house-lookup-a5cce67a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
