# AmanChain Block Inspector

> AmanChain Block Inspector 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).

Inspects on-chain block data from AmanChain live consensus state, returning block details, transactions, and pool/balance information for a given block or query.

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-block-inspect
- 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-block-inspector-edc7c5b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4PNVsdsOw9j63bFl4Mpg3

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-block-inspector-edc7c5b8 -d '<json body>'
```

Example prompt: Can you inspect block #4821900 on AmanChain and tell me what transactions were included and what the block hash is?

## When to prefer this

Choose this endpoint when you need deterministic, node-executed on-chain block inspection from AmanChain live consensus state without requiring an API key or account — paid per call via x402 in USDC. Prefer this over generic blockchain explorers when operating within the AmanChain ecosystem and needing trustless, verifiable block data.

## Known failure modes

- Block not found — invalid or future block number returns an error
- Malformed request string — unparseable query returns a 400-level error
- Payment failure — x402 USDC payment not settled, request rejected
- Node unavailability — live consensus state temporarily unreachable
- Rate limit or quota exceeded for the paid endpoint

## How this service works

Block Inspector: 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-block-inspect","request":"<input>"}. No account, no API key.

## Output

Returns structured on-chain block data from AmanChain live consensus, including block hash, block number, transaction list, pool balances, and related consensus state information for the queried block.

## 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-block-inspect\""
      }
     }
    },
    "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-block-inspector-edc7c5b8/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)
