# AmanChain Bridge Status

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

Returns the current on-chain bridge status from the AmanChain node, including live consensus state for cross-chain bridge operations.

## Facts

- Endpoint: POST https://amanchain-relay.gitajhd.workers.dev/api/x402/aman-bridge-status
- Price: $0.007465/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-bridge-status-3518738e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xtnTXu7czVRvcg-k_j70P

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-3518738e -d '<json body>'
```

Example prompt: Can you check the current bridge status on AmanChain — I want to know if the bridge is operational and what the live consensus state looks like right now?

## When to prefer this

Use this endpoint when you need real-time, node-sourced on-chain bridge status for the AmanChain network specifically, without requiring an API key or account. Prefer this over generic bridge explorers when you need pay-per-call, no-credential access to live AmanChain consensus state for automated agent workflows.

## Known failure modes

- Malformed or missing 'request' field in JSON body returns an error
- Payment not included or insufficient USDC causes a 402 Payment Required response
- AmanChain node temporarily unavailable results in a service error
- Invalid serviceId ('aman-bridge-status' must match exactly) causes a routing failure
- Network congestion or consensus lag may return stale or delayed state

## How this service works

Cross-chain bridge status — supported networks including Base (chainId 8453), live flags and current bridge fees. 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-bridge-status","request":"<input>"}.

## Output

Returns live bridge status data sourced directly from the AmanChain node against real consensus state, including operational status, bridge pool balances, and any relevant cross-chain bridge health indicators.

## 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-bridge-status-3518738e/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)
