KYB / KYC verification of a Japanese company
KYB / KYC verification of a Japanese company: reconcile a company name (+ optional address) against the official JP corporate registry (名寄せ). Returns ranked candidate 法人番号 with a 0-1 confidence score, handling 株式会社 / (株) / ㈱ spelling variation and matching Japanese or English names. A dissolved corporation is never reported as `verified` even on an exact name match. Use it to confirm a vendor, customer, or invoice counterparty.
Answeringour last check, 2026-09-25
1 of 1checks answered this week
144 msmedian answer time
$0.005listed price per call
$0.005price it asked us
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://houjin.agentic-jp.com/verify
| Category | Company and compliance |
|---|---|
| Provider host | houjin.agentic-jp.com |
| Networks | eip155:137, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-25 | valid payment request | 402 | $0.005 | 144 ms |
Example input (from the provider)
{
"body": {
"city": "\u5343\u4ee3\u7530\u533a",
"name": "\u682a\u5f0f\u4f1a\u793e\u30b5\u30f3\u30d7\u30eb\u5546\u4e8b",
"prefecture": "\u6771\u4eac\u90fd"
},
"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": {
"city": {
"description": "City / ward, to disambiguate. Optional.",
"type": "string"
},
"corporate_number": {
"description": "A \u6cd5\u4eba\u756a\u53f7 the caller wants confirmed against the name/address. Optional.",
"type": "string"
},
"name": {
"description": "Corporation name to reconcile against the registry. Required.",
"type": "string"
},
"prefecture": {
"description": "Prefecture, to disambiguate. Optional.",
"type": "string"
}
},
"required": [
"name"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"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"
}