# AmanChain Bridge Status

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

Queries live cross-chain bridge status including pending transfers, liquidity, and bridge health from on-chain consensus state

## Facts

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

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-bridge-status-7f1186da -d '<json body>'
```

Example prompt: Can you check the current bridge status on AmanChain — I want to know if it's healthy, how much liquidity is available, and whether any transfers are pending right now?

## When to prefer this

Use this endpoint when you need real-time, on-chain verified bridge status rather than third-party aggregated or cached data. It is ideal for agents orchestrating cross-chain transfers who need authoritative confirmation of bridge health, liquidity, and pending transfer state directly from AmanChain node consensus. Prefer this over off-chain bridge dashboards when accuracy and tamper-resistance matter, and when the pay-per-call x402 micropayment model fits your usage pattern (no API key or account setup required).

## Known failure modes

- Malformed or missing request body returns a schema validation error
- Bridge node temporarily out of sync may return stale or unavailable status
- Network-level payment failure via x402 (insufficient USDC balance) blocks the call
- Ambiguous or unsupported bridge query string may return empty or generic results
- Consensus lag during high chain load may introduce brief delays in status freshness

## How this service works

Bridge Status: 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-bridge-status","request":"<input>"}. No account, no API key.

## Output

Returns live bridge status data queried directly from AmanChain node consensus — including bridge operational health, pending or in-flight cross-chain transfers, available liquidity, and any anomalies or congestion signals derived from real block and pool state.

## 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-bridge-status\""
      }
     }
    },
    "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-bridge-status-7f1186da/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)
