# Japanese Address Normalizer

> Japanese Address Normalizer is a paid API for AI agents from address.agentic-jp.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Normalizes a raw Japanese address string into structured prefecture/city/town/chome-banchi components with postal code resolution and a confidence score.

## Facts

- Endpoint: POST https://address.agentic-jp.com/normalize
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japanese-address-normalizer-e37feabe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pqXzfZXHLgwcjNQFCU4Av

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability japanese-address-normalizer-e37feabe -d '<json body>'
```

Example prompt: Can you normalize this Japanese address into clean prefecture, city, town, and chome-banchi parts, fix any fullwidth digits or old kanji, and give me the postal code and confidence score? The address is: '東京都渋谷区道玄坂１－２－３'.

## When to prefer this

Use this endpoint when you need to normalize, validate, or deduplicate Japanese addresses before storage or comparison, especially when input may contain mixed fullwidth/halfwidth characters, old-form kanji, or inconsistent chome-banchi notation. Prefer this over a postal code lookup endpoint when you have a full address string (not just a postal code) that needs to be parsed and cleaned.

## Known failure modes

- Address string is empty or exceeds 200 characters — validation error returned
- Address is not recognizable as a Japanese address — low confidence score or parsing failure
- Ambiguous address with multiple possible interpretations — low confidence score returned
- Malformed request body — HTTP 400 error
- Payment not included or invalid x402 payment — HTTP 402 error

## How this service works

Japanese address normalization (住所正規化): standardize a JP address into clean prefecture / city / town / chome-banchi components. Fixes fullwidth/halfwidth digits, old-form kanji, and chome-banchi notation variants, and resolves the 7-digit postal code. Returns a 0-1 confidence score so agents can flag low-quality input. Use for address validation, cleansing, deduplication, and canonicalization before storage or comparison.

## Output

Returns structured address components (prefecture, city, town, chome-banchi), a resolved 7-digit Japanese postal code, and a 0–1 confidence score indicating input quality. Allows agents to detect low-quality or ambiguous addresses and decide whether to flag them for review.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "maxLength": 200,
   "description": "A raw Japanese address string in any common format"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "input": "東京都千代田区永田町１ー７ー１",
  "components": {
   "go": "1",
   "city": "千代田区",
   "town": "永田町",
   "chome": "1",
   "banchi": "7",
   "prefecture": "東京都"
  },
  "confidence": 0.98,
  "normalized": "東京都千代田区永田町1-7-1",
  "postal_code": "100-0014"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japanese-address-normalizer-e37feabe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from address.agentic-jp.com](https://www.zero.xyz/host/address.agentic-jp.com/llms.txt)
