ToolAssay

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. / 日本住所を構造化します。郵便番号の検証結果・ジオコーディングは返しませんが、町域の一意な前方一致による補完・曖昧性判定のためローカル郵便データを内部参照する場合があります。

Answeringour last check, 2026-09-24
1 of 1checks answered this week
340 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://api.jpverify.com/jp-address/parse

CategoryEverything else
Provider hostapi.jpverify.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.005 340 ms

Example input (from the provider)

{
  "body": {
    "address": "\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\u5343\u4ee3\u75301\u4e01\u76ee1\u756a1\u53f7",
    "response_language": "ja"
  },
  "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": {
          "additionalProperties": false,
          "properties": {
            "address": {
              "description": "Japanese address to parse. / \u89e3\u6790\u3059\u308b\u65e5\u672c\u4f4f\u6240\u3002",
              "maxLength": 500,
              "minLength": 1,
              "type": "string"
            },
            "parser_profile": {
              "description": "Parser strictness profile. / \u89e3\u6790\u306e\u53b3\u683c\u3055\u3002",
              "enum": [
                "standard",
                "strict"
              ],
              "type": "string"
            },
            "postal_code": {
              "description": "Optional Japan postal code used as evidence, not geocoding output. / \u4efb\u610f\u306e\u90f5\u4fbf\u756a\u53f7\u3002\u6839\u62e0\u3068\u3057\u3066\u4f7f\u7528\u3057\u307e\u3059\u3002",
              "pattern": "^\\d{3}-?\\d{4}$",
              "type": [
                "string",
                "null"
              ]
            },
            "response_language": {
              "description": "Language of localized output fields. / \u51fa\u529b\u8a00\u8a9e\u3002",
              "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"
}

This page as JSON