# address.agentic-jp.com Reverse Geocode

> address.agentic-jp.com Reverse Geocode 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 geographic coordinates (latitude/longitude) into a human-readable street address.

## Facts

- Endpoint: POST https://address.agentic-jp.com/reverse-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-reverse-geocode-6e9ca777
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dnZ7FBq_sLcizVmmO0_fY

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-reverse-geocode-6e9ca777 -d '<json body>'
```

Example prompt: What's the street address at coordinates 35.6895° N, 139.6917° E? I need the full human-readable address for that location.

## When to prefer this

Use this endpoint when you have a latitude/longitude coordinate pair and need to resolve it to a street-level human-readable address, particularly for Japan-region addresses or when you need a low-cost per-call geocoding solution priced at $0.005 USDC.

## Known failure modes

- Coordinates fall in a remote or unmapped area with no address available
- Invalid or out-of-range latitude/longitude values rejected
- Rate limiting or payment failure returns an error
- Coordinates in the ocean or uninhabited land return no result

## How this service works

Reverse-geocode WGS84 lat/lng coordinates within Japan to a normalized Japanese (JP) address with structured components. Use to label a GPS fix, a map pin, or a photo location with a human-readable address.

## Output

A human-readable address corresponding to the input coordinates, typically including street name and number, city, region, postal code, and country.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "description": "Latitude within Japan (20–46)"
  },
  "lng": {
   "type": "number",
   "description": "Longitude within Japan (122–154)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "東京都千代田区永田町1-7-1",
  "confidence": 0.92
 }
}
```

## More

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