# address.agentic-jp.com Batch Address Lookup

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

Processes multiple address or geocoding requests in a single batch call across supported blockchain or geographic networks.

## Facts

- Endpoint: POST https://address.agentic-jp.com/batch
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/address-agentic-jp-com-batch-address-lookup-d0ddb0c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KBYbX62GJ0dVSfqRNXMbm

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-batch-address-lookup-d0ddb0c1 -d '<json body>'
```

Example prompt: I have a list of 10 coordinate pairs — can you batch resolve all of them to human-readable street addresses in one go using the agentic-jp address service?

## When to prefer this

Use this endpoint when you need to resolve or geocode multiple addresses or coordinates in a single API call, avoiding the overhead of making individual requests. Prefer this over single-address endpoints when processing lists of locations, bulk geocoding pipelines, or when minimizing latency and cost across many address lookups.

## Known failure modes

- Invalid or malformed coordinate/address inputs in one or more batch items causing partial or full failure
- Unsupported network specified for one or more requests
- Batch size exceeds maximum allowed limit
- Payment not provided or insufficient USDC balance for x402 payment
- Rate limiting or quota exceeded for batch endpoint
- Partial batch failure where some items succeed and others return errors

## How this service works

Batch-normalize or batch-geocode up to 100 Japanese (JP) addresses in a single call — same processing as POST /normalize and POST /geocode, with per-item success/error reporting. Dynamic pricing: a small per-item fee. Use for bulk-cleaning an address column or import file.

## Output

An array of address data results corresponding to each input request in the batch, including geocoded locations or human-readable addresses depending on the request type, returned across supported networks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "items": {
   "type": "array",
   "maxItems": 100
  },
  "operation": {
   "enum": [
    "normalize",
    "geocode"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "id": "1",
    "success": true
   }
  ],
  "operation": "normalize"
 }
}
```

## More

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