Japanese address parser and component extraction
Japanese address parser and component extraction. Keywords: Japanese address parser, address components, chome, block, lot, house, 丁目, 番地, 号. Parse a Japanese address into components without returning postal validation or geocoding; local postal prefix evidence may safely recover a unique town or report ambiguity. / 日本住所を構造化します。郵便番号の検証結果・ジオコーディングは返しませんが、町域の一意な前方一致による補完・曖昧性判定のためローカル郵便データを内部参照する場合があります。
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
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": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "東京都千代田区千代田1丁目1番1号",
"response_language": "ja"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"block": "1番",
"chome": "1丁目",
"city": "千代田区",
"house": "1号",
"normalized": "東京都千代田区千代田1丁目1番1号",
"original": "東京都千代田区千代田1丁目1番1号",
"parse_confidence": 0.95,
"parse_status": "parsed",
"parsed_level": 8,
"precision_satisfied": false,
"prefecture": "東京都",
"town": "千代田",
"verified_level": null
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"address": {
"description": "Japanese address to parse. / 解析する日本住所。",
"maxLength": 500,
"minLength": 1,
"type": "string"
},
"parser_profile": {
"description": "Parser strictness profile. / 解析の厳格さ。",
"enum": [
"standard",
"strict"
],
"type": "string"
},
"postal_code": {
"description": "Optional Japan postal code used as evidence, not geocoding output. / 任意の郵便番号。根拠として使用します。",
"pattern": "^\\d{3}-?\\d{4}$",
"type": [
"string",
"null"
]
},
"response_language": {
"description": "Language of localized output fields. / 出力言語。",
"enum": [
"ja",
"both"
],
"type": "string"
}
},
"required": [
"address"
],
"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": {
"block": {
"type": [
"string",
"null"
]
},
"building": {
"type": [
"string",
"null"
]
},
"changes": {
"items": {
"type": "string"
},
"type": "array"
},
"chome": {
"type": [
"string",
"null"
]
},
"city": {
"type": [
"string",
"null"
]
},
"county": {
"type": [
"string",
"null"
]
},
"floor": {
"type": [
"string",
"null"
]
},
"granularity": {
"type": "string"
},
"house": {
"type": [
"string",
"null"
]
},
"lot": {
"type": [
"string",
"null"
]
},
"normalized": {
"type": "string"
},
"original": {
"type": "string"
},
"other": {
"items": {
"type": "string"
},
"type": "array"
},
"parse_confidence": {
"type": "number"
},
"parse_status": {
"type": "string"
},
"parsed_level": {
"type": "integer"
},
"parser_version": {
"type": "string"
},
"postal_code": {
"type": [
"string",
"null"
]
},
"precision_satisfied": {
"type": "boolean"
},
"prefecture": {
"type": [
"string",
"null"
]
},
"requested_level": {
"type": "integer"
},
"response_language": {
"type": "string"
},
"room": {
"type": [
"string",
"null"
]
},
"town": {
"type": [
"string",
"null"
]
},
"town_recovery": {
"type": [
"object",
"null"
]
},
"type": "object",
"unparsed": {
"items": {
"type": "string"
},
"type": "array"
},
"verified_level": {
"type": [
"integer",
"null"
]
},
"ward": {
"type": [
"string",
"null"
]
},
"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-address/parse" # -> 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-address/parse");
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-address/parse")
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/4695.json, and this resource appears in /discovery/resources and /discovery/search.