Verify a Japanese FSA-regulated entity across the three V1 covered categories
Verify a Japanese FSA-regulated entity across the three V1 covered categories. / 日本の金融庁対象三分類で法人を照合します。
30000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-28
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": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"categories": [
"funds_transfer_business"
],
"corporate_number": "1234567890123",
"response_language": "en"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"coverage_status": "covered",
"decision": "verified",
"identity_match": "exact",
"license_status": "licensed",
"licenses": [],
"source_freshness": "fresh",
"warnings": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"corporate_number"
]
},
{
"required": [
"name"
]
},
{
"required": [
"address"
]
},
{
"required": [
"phone"
]
}
],
"properties": {
"address": {
"maxLength": 500,
"type": "string"
},
"categories": {
"items": {
"enum": [
"financial_instruments_business",
"funds_transfer_business",
"crypto_asset_exchange_business"
],
"type": "string"
},
"maxItems": 3,
"type": "array"
},
"corporate_number": {
"pattern": "^\\d{13}$",
"type": "string"
},
"name": {
"maxLength": 300,
"minLength": 1,
"type": "string"
},
"phone": {
"maxLength": 50,
"type": "string"
},
"response_language": {
"default": "en",
"enum": [
"en",
"ja",
"both"
],
"type": "string"
}
},
"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": {
"candidates": {
"items": {
"type": "object"
},
"type": "array"
},
"coverage": {
"type": "object"
},
"coverage_status": {
"enum": [
"covered",
"not_covered"
],
"type": "string"
},
"decision": {
"enum": [
"verified",
"no_record_within_coverage",
"manual_review",
"out_of_scope",
"stale_source"
],
"type": "string"
},
"identity_match": {
"enum": [
"exact",
"probable",
"ambiguous",
"none"
],
"type": "string"
},
"license_status": {
"enum": [
"licensed",
"no_record_in_covered_dataset",
"unknown"
],
"type": "string"
},
"licenses": {
"items": {
"type": "object"
},
"type": "array"
},
"match_reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"matched_entity": {
"type": [
"object",
"null"
]
},
"source_freshness": {
"enum": [
"fresh",
"stale",
"unavailable"
],
"type": "string"
},
"type": "object",
"warnings": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.jpverify.com/jp-regulated-entity/verify" # -> 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/jp-regulated-entity/verify");
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/jp-regulated-entity/verify")
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/4698.json, and this resource appears in /discovery/resources and /discovery/search.