# Strale UK Company Data Lookup

> Strale UK Company Data 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-13).

Retrieve official UK company information from Companies House by company number or name, with cryptographic audit records.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/uk-company-data
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-uk-company-data-lookup-c949d319
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oOciJ8zI9hwjdYVpSQRe2

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 strale-uk-company-data-lookup-c949d319
```

Example prompt: Can you pull up the official Companies House record for Revolut Ltd — I need their registration number, current status, and registered address?

## When to prefer this

Choose this endpoint when you need authoritative, auditable UK company data sourced directly from Companies House, especially in compliance, due diligence, or contract verification contexts where a cryptographic audit trail matters. Prefer it over generic web search when you need structured, reliable fields like registration number, status, and registered address rather than unstructured web results.

## Known failure modes

- Company number not found — invalid or non-existent registration number returns an error
- Company name ambiguous — multiple matches may require a more specific query or numeric company number
- Rate limiting or payment failure — x402 micropayment not processed correctly
- Malformed company number — must be exactly 8 digits or a valid name string
- Stale data — Companies House data may lag real-time filings by days

## 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 official UK Companies House data including company name, registration number, company type, incorporation date, registered office address, current status (active/dissolved/etc.), officer/director names, and a cryptographic audit record with chain hashing for verifiability.

## 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",
     "required": [
      "company_number"
     ],
     "properties": {
      "company_number": {
       "type": "string",
       "description": "UK Companies House number (8 digits) or company name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-uk-company-data-lookup-c949d319/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)
