# 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.054/call, status unknown (last checked 2026-09-15).

Retrieves officer information (directors, secretaries, etc.) for a UK company from Companies House via company name or number.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/uk-companies-house-officers
- Price: $0.054/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-officers-lookup-42e0878d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R63-VlTWZQHDllNVLns_J

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-officers-lookup-42e0878d
```

Example prompt: Who are the current directors and officers of Rolls-Royce Holdings? Look them up via UK Companies House.

## When to prefer this

Use this endpoint when you need authoritative, auditable officer data for UK-registered companies directly from Companies House. Prefer it over generic business data APIs when you need UK-specific corporate governance data with a cryptographic audit trail, or when compliance and trust verification are requirements. Ideal for KYC, AML, due diligence, or contract verification workflows involving UK entities.

## Known failure modes

- Company not found — invalid or unrecognised company name/number returns empty results or error
- Ambiguous company name matching multiple entities — may require company_number for precision
- Companies House API downtime or rate limiting causing upstream errors
- Dissolved or struck-off companies may return limited or no active officer data
- Missing required query parameters returns validation error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a list of officers (directors, secretaries, and other roles) associated with the specified UK company, including officer names, roles, appointment dates, and resignation dates where applicable, sourced directly from Companies House. Each response includes a cryptographic audit record for trust verification.

## 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/uk-companies-house-officers-lookup-42e0878d/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)
