# AmanChain Address Validator

> AmanChain Address Validator is a paid API for AI agents from amanchain-relay.gitajhd.workers.dev, paid per call via x402, $0.002488/call, status unknown (last checked 2026-09-14).

Validates and verifies blockchain address checksums against AmanChain live consensus state

## Facts

- Endpoint: POST https://amanchain-relay.gitajhd.workers.dev/api/x402/aman-address-validator
- Price: $0.002488/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-address-validator-724c4b56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6peVKsHnaEh_l5srLOaML

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 amanchain-address-validator-724c4b56 -d '<json body>'
```

Example prompt: Can you validate this AmanChain wallet address to make sure the checksum is correct: 0x4a7b3c9d2e1f0a8b5c6d7e8f9a0b1c2d3e4f5a6b?

## When to prefer this

Use this endpoint when you need to verify AmanChain-specific address checksums against live on-chain consensus state rather than performing simple offline format checks. Prefer this over generic address validators when accuracy against the actual AmanChain network state matters, especially before executing transactions or integrating addresses into smart contracts.

## Known failure modes

- Invalid or malformed input address returns a failed validation response
- Network or node unavailability causes request timeout
- Missing or incorrect serviceId field causes request rejection
- Payment failure via x402 prevents execution
- Unsupported address format returns an error response

## How this service works

Blockchain address validator — checksum and format validation for AmanChain addresses before you send funds. Deterministic on-chain execution by the AmanChain node — live consensus state, real blocks, pools and balances. Pay per call via x402 (USDC on Base), no account, no API key. POST JSON {"serviceId":"aman-address-validator","request":"<input>"}.

## Output

Returns a validation result indicating whether the provided blockchain address passes AmanChain checksum validation, along with any relevant status details about the address's validity against live consensus state.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "example": {
      "ok": true
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-address-validator-724c4b56/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from amanchain-relay.gitajhd.workers.dev](https://www.zero.xyz/host/amanchain-relay.gitajhd.workers.dev/llms.txt)
