Official UK Companies House data in one paid call
Official UK Companies House data in one paid call. Search: ?q=tesco returns matching companies (number, status, type, incorporation date). Profile: ?number=00445790 returns the full profile PLUS current officers and PSC (persons with significant control, the UK quasi-UBO register): names, roles, natures of control, risk flags (insolvency history, charges, overdue filings) and typed insolvency cases when history exists. Statutory register data, minimized. 24h cache.
10000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-03
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"number": "00445790"
},
"type": "http"
},
"output": {
"example": {
"company_number": "00445790",
"company_type": "plc",
"incorporated_on": "1947-11-27",
"jurisdiction": "england-wales",
"name": "TESCO PLC",
"officers": {
"active_count": 12,
"items": [
{
"appointed_on": "2020-10-01",
"name": "MURPHY, Ken",
"role": "director"
}
],
"resigned_count": 89
},
"psc": {
"items": [],
"note": "no PSC register entries (see PSC statements on CH)",
"total": 0
},
"registered_office": {
"country": "United Kingdom",
"locality": "Welwyn Garden City",
"postal_code": "AL7 1GA"
},
"risk_flags": {
"accounts_overdue": false,
"confirmation_statement_overdue": false,
"has_charges": true,
"has_insolvency_history": false,
"registered_office_in_dispute": false
},
"sic_codes": [
"47110"
],
"source": "Companies House (api.company-information.service.gov.uk), statutory UK register; officers/PSC minimized (no DOB, no personal addresses)",
"status": "active"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"default": 5,
"description": "Search results (1-10)",
"type": "integer"
},
"number": {
"description": "UK company number for full profile, e.g. 00445790",
"type": "string"
},
"q": {
"description": "Company name to search",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/uk/company" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/uk/company");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/uk/company")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3925.json, and this resource appears in /discovery/resources and /discovery/search.