# AmanChain Explorer Summary

> AmanChain Explorer Summary is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.031104/call, status unknown (last checked 2026-09-15).

Returns a high-level on-chain explorer summary of a blockchain address, transaction, or block — queried live against AmanChain consensus state

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-explorer-summary
- Price: $0.031104/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-explorer-summary-4a31d399
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w4eTyPojm6cdCB_WGNJHI

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-4a31d399 -d '<json body>'
```

Example prompt: Can you pull an on-chain explorer summary for the wallet address 0x1234abcd...5678 — I want to see its balance, transaction count, and general activity status?

## When to prefer this

Use this endpoint when you need a fast, live, pay-per-call blockchain explorer summary without requiring an API key or account — especially useful in agentic workflows that need on-chain data for arbitrary addresses, transactions, or blocks and can pay per query via x402/USDC on Base.

## Known failure modes

- Invalid or malformed address/hash/block input returns an error response
- Unknown or non-existent on-chain entity may return empty or null result
- Network or node unavailability may cause timeout or service error
- Incorrect serviceId value causes request routing failure
- Insufficient USDC balance for x402 micropayment blocks the call

## How this service works

Explorer Summary: node-operated on-chain service Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-explorer-summary","request":"<input>"}. No account, no API key.

## Output

A structured on-chain explorer summary including details such as wallet balance, transaction count, block information, or other consensus-state data relevant to the queried address, transaction, or block — drawn live from AmanChain nodes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-explorer-summary\""
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-explorer-summary-4a31d399/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
