{
  "x402Version": 2,
  "id": 4693,
  "slug": "4693",
  "resource": "https://api.jpverify.com/jp-address/geocode",
  "description": "Japanese forward geocoding from an address to coordinates. Keywords: Japan geocoder, address to coordinates, building-level geocode, Jageocoder, chome, block, lot, house. Returns provider-neutral local candidates, coordinates, address IDs, hierarchy levels, unmatched tails, and partial-match warnings. Jageocoder level 5/6 is oaza/aza, level 7 is block, and level 8 is a building or house node when present in the dictionary; town-level evidence is not a door-number or coordinate accuracy claim.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xe4A4E5B226bE71e7b6eD523bc7a91089c770572F",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "address": "東京都千代田区千代田1丁目1番1号",
            "max_candidates": 3
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "candidate_count": 1,
            "candidates": [
              {
                "address_id": 123,
                "confidence": 0.98,
                "granularity": "building",
                "latitude": 35.6852,
                "longitude": 139.7528,
                "match_completeness": "exact",
                "match_level": 8,
                "normalized": "東京都千代田区千代田1丁目1番1号",
                "reasons": [
                  "all_requested_components_matched"
                ],
                "source": "Jageocoder local dictionary",
                "unmatched_tail": null
              }
            ],
            "dictionary_version": null,
            "geocoder_status": "ready",
            "matched": "東京都千代田区千代田一丁目一番一号",
            "minimum_acceptable_level": 8,
            "precision_satisfied": true,
            "status": "matched",
            "upstream_matched": [
              "東京都千代田区千代田一丁目一番一号"
            ],
            "verified_level": 8,
            "warnings": []
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "properties": {
                  "address": {
                    "description": "Forward-geocoded Japanese address. / ジオコードする日本住所。",
                    "maxLength": 500,
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "components": {
                    "description": "Parsed address components when address is already parsed; at least one non-empty address field is required. / 解析済み住所構成要素。空でない住所項目を1つ以上指定します。",
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "max_candidates": {
                    "default": 3,
                    "description": "Maximum candidates. / 候補数上限。",
                    "maximum": 10,
                    "minimum": 1,
                    "type": "integer"
                  },
                  "minimum_acceptable_level": {
                    "description": "Minimum hierarchy level accepted as matched; lower results are partial. / matchedとして受け入れる最小階層。下位候補はpartial。",
                    "maximum": 8,
                    "minimum": 1,
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "postal_code": {
                    "description": "Optional postal-code evidence. / 任意の郵便番号根拠。",
                    "pattern": "^\\d{3}-?\\d{4}$",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "provider": {
                    "default": "auto",
                    "description": "Geocoder provider selection. / 地理コードプロバイダ。",
                    "enum": [
                      "auto",
                      "local_jageocoder"
                    ],
                    "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": {
                "candidate_count": {
                  "type": "integer"
                },
                "candidates": {
                  "items": {
                    "properties": {
                      "address_id": {
                        "type": [
                          "integer",
                          "string",
                          "null"
                        ]
                      },
                      "confidence": {
                        "type": "number"
                      },
                      "granularity": {
                        "type": "string"
                      },
                      "latitude": {
                        "type": [
                          "number",
                          "null"
                        ]
                      },
                      "longitude": {
                        "type": [
                          "number",
                          "null"
                        ]
                      },
                      "match_completeness": {
                        "type": "string"
                      },
                      "match_level": {
                        "type": "integer"
                      },
                      "normalized": {
                        "type": "string"
                      },
                      "reasons": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "source": {
                        "type": "string"
                      },
                      "unmatched_tail": {
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": "object"
                  },
                  "type": "array"
                },
                "dictionary_version": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "geocoder_status": {
                  "type": "string"
                },
                "matched": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "minimum_acceptable_level": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "precision_satisfied": {
                  "type": "boolean"
                },
                "status": {
                  "type": "string"
                },
                "type": "object",
                "upstream_matched": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                },
                "verified_level": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "warnings": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "api.jpverify.com",
  "lastUpdated": "2026-09-10T15:46:15.547Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-10T15:46:07.445Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "api.jpverify.com",
    "manifest_name": "api.jpverify.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}