# address.agentic-jp.com Geocoding

> address.agentic-jp.com Geocoding 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-13).

Converts a text address into geocoded latitude/longitude coordinates and structured location data.

## Facts

- Endpoint: POST https://address.agentic-jp.com/geocode
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/address-agentic-jp-com-geocoding-b0d1c0cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7xKfOmMn0-PQWTGP-Rn2C

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 address-agentic-jp-com-geocoding-b0d1c0cb -d '<json body>'
```

Example prompt: Can you geocode this address for me — 1-1 Chiyoda, Chiyoda City, Tokyo 100-8111, Japan — and give me the latitude and longitude?

## When to prefer this

Use this endpoint when you need to convert a human-readable address into geographic coordinates (lat/lng), especially for Japanese or Asia-Pacific addresses. Prefer this over alternatives when already operating in the agentic-jp ecosystem or when reverse geocoding (coordinates to address) is handled by the sibling endpoint on the same service.

## Known failure modes

- Address not found or unrecognized returns an error or empty result
- Ambiguous address may return incorrect coordinates
- Malformed address string causes a 400 bad request
- Network timeout or service unavailability returns 5xx
- Payment not attached or insufficient USDC causes payment-required error

## How this service works

Geocode a Japanese (JP) address to WGS84 lat/lng coordinates, with a granularity level (prefecture → city → town → chome → banchi) and a 0-1 confidence score showing how precisely the input resolved. Japan-only. Use for mapping, distance calculation, or delivery routing.

## Output

Returns geocoded location data including latitude and longitude coordinates (and potentially structured address components) corresponding to the input address string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "maxLength": 200,
   "description": "Japanese address to geocode"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "lat": 35.6739,
  "lng": 139.7449,
  "level": "banchi",
  "confidence": 0.95,
  "normalized": "東京都千代田区永田町1-7-1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/address-agentic-jp-com-geocoding-b0d1c0cb/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)
