Verify a UK company by its Companies House number (e.g
Verify a UK company by its Companies House number (e.g. 00445790) or by name against the official UK register (Companies House). Returns the company profile: registered name, company status (active/dissolved/liquidation/…), company type, incorporation date, jurisdiction, registered office address and SIC activity codes. Does not include officers or persons with significant control (personal data). Data under the Open Government Licence v3.0 (Crown copyright).
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.resetparatodos.com/x402/v1/uk/company/verify
| Category | Company and compliance |
|---|---|
| Provider host | api.resetparatodos.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.03 | 1512 ms |
Example input (from the provider)
{
"body": {
"company": "00445790"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"company": {
"description": "A UK company number (e.g. 00445790, SC123456) or a company name",
"type": "string"
}
},
"required": [
"company"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}