---
name: address.agentic-jp.com
description: address.agentic-jp.com provides Japanese address normalization and geocoding services. It accepts Japanese address strings and returns structured components, postal codes, WGS84 coordinates, granularity levels, and confidence scores. Both single-address and batch (up to 100 items) modes are available.
host: address.agentic-jp.com
---

# address.agentic-jp.com

This host is a Japan-specific address processing service serving agents that need to clean, standardize, or geocode Japanese addresses. It supports both single-address geocoding and bulk batch operations covering normalization and geocoding in one call. It does not handle non-Japanese addresses, reverse geocoding, or global location data.

## When to use this host

Use this host when an agent needs to geocode or normalize Japanese addresses, either one at a time or in bulk batches of up to 100. For single lookups, prefer geocode-japanese-address to avoid batch overhead. For bulk imports or database preparation, use batch-normalize-geocode-japanese-addresses. Do not use this host for addresses outside Japan — use a global geocoding API (e.g., Google Maps Geocoding API or HERE) instead. Do not use for reverse geocoding (converting lat/lng back to an address); this host has no such capability.

## Capabilities

### Japanese Address Geocoding

Converts Japanese address strings to WGS84 lat/lng coordinates with confidence scores and granularity levels, supporting both single and batch inputs.

- **`geocode-japanese-address`** — Converts a Japanese address string into WGS84 latitude/longitude coordinates with a granularity level and confidence score, Japan-only.
- **`batch-normalize-geocode-japanese-addresses`** — Normalizes or geocodes up to 100 Japanese addresses in a single POST call, returning per-item components, postal code, confidence score, and lat/lng coordinates.

## Workflows

### Bulk Address Enrichment with Spot Verification

*Use when an agent needs to geocode a large list of Japanese addresses in bulk and then re-resolve any low-confidence results individually for higher accuracy.*

1. **`batch-normalize-geocode-japanese-addresses`** — Submit up to 100 Japanese addresses in a single call to obtain normalized forms, postal codes, and lat/lng coordinates with confidence scores for each item.
2. **`geocode-japanese-address`** — Re-submit individual addresses that returned low confidence scores from the batch call to obtain a fresh single-address geocode result for verification.

## Skill reference

### `batch-normalize-geocode-japanese-addresses`

**Japanese Address Batch Normalize / Geocode** — Normalizes or geocodes up to 100 Japanese addresses in a single POST call, returning per-item components, postal code, confidence score, and lat/lng coordinates.

*Use when:* Use when an agent needs to clean, standardize, or geocode a bulk list of Japanese addresses (up to 100 at a time), such as before importing into a database or mapping application.

*Not for:* Do not use for single-address lookups where batch overhead is unnecessary — use POST /normalize or POST /geocode instead. Not suitable for non-Japanese addresses.

**Inputs:**

- `operation` (string, required) — Processing mode: 'normalize' to standardize address strings, or 'geocode' to also return lat/lng coordinates.
- `items` (array, required) — Array of address objects to process, each with an 'id' (string) and 'address' (Japanese address string). Maximum 100 items per call.

**Returns:** Returns operation echo, item count, and a results array where each entry includes the normalized address string, broken-out components (prefecture through room), postal code, confidence score (0.9), warnings, and a lat/lng point with resolution level.

**Example:** `{"operation":"normalize","items":[{"id":"1","address":"東京都千代田区永田町1-7-1"},{"id":"2","address":"大阪府大阪市北区梅田3-1-1"},{"id":"3","address":"北海道札幌市中央区北1条西2丁目"}]}`

---

### `geocode-japanese-address`

**GeoCode Address Finder (Japan)** — Converts a Japanese address string into WGS84 latitude/longitude coordinates with a granularity level and confidence score, Japan-only.

*Use when:* Use when an agent needs to resolve a Japanese address to lat/lng coordinates for mapping, distance calculation, or delivery routing, and the input address is within Japan.

*Not for:* Do not use for addresses outside Japan; use a global geocoding API instead. Not suitable for reverse geocoding (lat/lng to address).

**Inputs:**

- `address` (string, required) — Japanese address string to geocode. Maximum 200 characters.

**Returns:** Returns the input and normalized address, WGS84 lat/lng coordinates, a granularity level string, a 0–1 confidence score, and the resolution source method.

**Example:** `{"address": "東京都千代田区永田町1-7-1"}`

---
