# UK Companies House Officers Lookup

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

Retrieves active and resigned officers (directors, secretaries) of a UK company from Companies House, including appointment dates.

## Facts

- Endpoint: GET https://api.strale.io/x402/uk-companies-house-officers
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-e8aa5519
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8JAH0YeBr5KuLaKEpkhgm

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 api-strale-io-e8aa5519
```

Example prompt: Who are the current and past directors of Rolls-Royce Holdings PLC? Look them up via Companies House and include their appointment and resignation dates.

## When to prefer this

Use this endpoint when you need structured officer data for a UK-registered company from the official Companies House registry, especially for due diligence, KYC checks, or compliance workflows. Prefer this over general web scraping when you need authoritative, structured appointment and resignation dates.

## Known failure modes

- Company not found — invalid or non-existent company name or number returns empty or error response
- Ambiguous company name matches multiple companies — may require company_number for precision
- Rate limiting or payment failure — returns 402 if payment not processed correctly
- Companies House API downtime — upstream service unavailability causes failure

## How this service works

Look up officers (directors, secretaries) of a UK company via Companies House API. Returns active and resigned officers with appointment dates.

## Output

A list of officers (directors, secretaries, etc.) associated with the UK company, including their names, roles, appointment dates, and whether they are currently active or have resigned.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "company_name": "Rolls-Royce Holdings"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "company_name": {
       "type": "string"
      },
      "company_number": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-e8aa5519/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
