Should an agent trust this UK company? Returns a 0-100 verdict and low_risk/caution/high_r
Should an agent trust this UK company? Returns a 0-100 verdict and low_risk/caution/high_risk band, with every rule that fired named in the response and the register value that triggered it: STATUS_DISSOLVED, STRIKE_OFF_ACTIVE, ACCOUNTS_OVERDUE, NO_ACTIVE_DIRECTORS, OFFICER_CHURN, FS_SIC_NOT_FCA and 9 more. Rules are deterministic and published, so you can audit the verdict or re-weight it. Never model-scored.
100000 (raw units)
price
6
calls / 30d
1
unique payers
2026-09-14
updated
Provider
api.ukintel.uk · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8aa6a85a2723e2816204f3cf48d76b84bafdaab4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"number": "SC311560"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"confidence": "high",
"notice": "Information, not advice.",
"query": {
"company_number": "SC311560"
},
"result": {
"name": "BREWDOG PLC",
"status": "in_administration"
},
"verdict": {
"band": "high_risk",
"flags": [
{
"code": "STATUS_ADMINISTRATION",
"detail": "Company is in administration (insolvency procedure)"
}
],
"narrative": "BrewDog PLC is a 19-year-old Scottish brewer currently in administration, with both statutory filings overdue.",
"score": 20
}
},
"type": "json"
}
},
"routeTemplate": "/v1/company/:number/verdict",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"number": {
"description": "UK company number",
"pattern": "^([A-Z]{2})?[0-9]{6,8}$",
"type": "string"
}
},
"required": [
"number"
],
"type": "object"
},
"queryParams": {
"properties": {
"detail": {
"enum": [
"full"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"verdict": {
"properties": {
"band": {
"enum": [
"low_risk",
"caution",
"high_risk",
null
],
"type": [
"string",
"null"
]
},
"score": {
"maximum": 100,
"minimum": 0,
"type": [
"integer",
"null"
]
}
},
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.ukintel.uk/v1/company/:number/verdict" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.ukintel.uk/v1/company/:number/verdict");
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://api.ukintel.uk/v1/company/:number/verdict")
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/3309.json, and this resource appears in /discovery/resources and /discovery/search.