# AmanChain Explorer Summary

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

Returns a summary of on-chain explorer data for the AmanChain network, including blocks, pools, and balances, executed deterministically against live consensus state.

## Facts

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

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-explorer-summary-ad920f01 -d '<json body>'
```

Example prompt: Can you pull me an explorer summary from AmanChain — I want to see the current on-chain state including blocks, pools, and balances right now?

## When to prefer this

Use this endpoint when you need a deterministic, node-executed summary of the AmanChain blockchain's live state — including blocks, pools, and balances — without requiring an API key or account. Prefer this over generic block explorers when you specifically need AmanChain data and want pay-per-call USDC pricing via x402 with no subscription overhead.

## Known failure modes

- Invalid or malformed request string returns an error response
- Incorrect serviceId value causes the relay to reject the call
- Network or node unavailability may result in a timeout or 5xx error
- Insufficient x402 USDC payment causes the call to be rejected before execution
- Malformed JSON body results in a parsing error

## How this service works

Block explorer summary — latest blocks with transaction counts and mempool size; chain head monitor. 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-explorer-summary","request":"<input>"}.

## Output

A structured summary of live AmanChain on-chain state, including current block information, liquidity pool data, account balances, and other consensus-derived explorer metrics. Data is sourced directly from the AmanChain node against real 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-explorer-summary-ad920f01/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)
