Resolve a JP or GB entity using projected official evidence from NTA/gBizINFO or Companies
Resolve a JP or GB entity using projected official evidence from NTA/gBizINFO or Companies House; raw upstream responses are not returned. Hard identity conflicts are never verified. / 日本または英国の企業を公式根拠の加工済み投影で確認します。元データは返さず、識別子の矛盾はverifiedになりません。
40000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-10
updated
Provider
api.jpverify.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xe4A4E5B226bE71e7b6eD523bc7a91089c770572F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "40000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"country_code": "GB",
"identifiers": {
"company_number": "00000006"
},
"response_language": "both"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"checks": [],
"confidence_band": "medium",
"confidence_reasons": [
"matched_authoritative_sources=1",
"single_authoritative_source_only"
],
"country_code": "GB",
"coverage": {},
"decision": "likely_match",
"source_freshness": [],
"status": "resolved"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"identifiers"
]
}
],
"properties": {
"address": {
"maxLength": 500,
"type": [
"string",
"null"
]
},
"country_code": {
"enum": [
"JP",
"GB"
],
"type": "string"
},
"identifiers": {
"additionalProperties": false,
"properties": {
"company_number": {
"maxLength": 8,
"minLength": 2,
"type": "string"
},
"corporate_number": {
"pattern": "^[0-9]{13}$",
"type": "string"
},
"lei": {
"pattern": "^[A-Z0-9]{18}[0-9]{2}$",
"type": "string"
},
"registration_number": {
"pattern": "^[Tt][0-9\\s\\-]{13,20}$",
"type": "string"
},
"t_number": {
"pattern": "^[Tt][0-9\\s\\-]{13,20}$",
"type": "string"
}
},
"type": [
"object",
"null"
]
},
"name": {
"maxLength": 300,
"type": [
"string",
"null"
]
},
"response_language": {
"default": "both",
"description": "Response presentation language: ja, en, or both. / レスポンス表示言語: ja(日本語)、en(英語)、both(両方)。",
"enum": [
"ja",
"en",
"both"
],
"type": "string"
}
},
"required": [
"country_code"
],
"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": {
"checked_at": {
"format": "date-time",
"type": "string"
},
"checks": {
"items": {
"type": "object"
},
"type": "array"
},
"confidence_band": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
},
"confidence_reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"conflicts": {
"items": {
"type": "object"
},
"type": "array"
},
"country_code": {
"enum": [
"JP",
"GB"
],
"type": "string"
},
"coverage": {
"type": "object"
},
"decision": {
"enum": [
"verified",
"likely_match",
"ambiguous",
"not_found_within_coverage",
"insufficient_coverage"
],
"type": "string"
},
"evidence": {
"type": "object"
},
"identity_status": {
"enum": [
"verified",
"ambiguous",
"not_found",
"insufficient_coverage",
null
],
"type": [
"string",
"null"
]
},
"next_actions": {
"items": {
"type": "string"
},
"type": "array"
},
"reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"registration_status": {
"type": "object"
},
"response_language": {
"enum": [
"ja",
"en",
"both"
],
"type": "string"
},
"route": {
"type": "string"
},
"source_freshness": {
"items": {
"type": "object"
},
"type": "array"
},
"source_versions": {
"items": {
"type": "object"
},
"type": "array"
},
"status": {
"enum": [
"resolved",
"ambiguous",
"not_found",
"insufficient_coverage"
],
"type": "string"
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.jpverify.com/v1/entities/resolve-cross-border" # -> 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.jpverify.com/v1/entities/resolve-cross-border");
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.jpverify.com/v1/entities/resolve-cross-border")
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/4699.json, and this resource appears in /discovery/resources and /discovery/search.