# AmanChain Fee & Gas Tracker

> AmanChain Fee & Gas Tracker 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 live blockchain gas prices and transaction fee estimates from on-chain consensus state via a node-operated x402-paid service

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-gas-tracker
- 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-fee-gas-tracker-0694c178
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xIKgYQFrr5JL3Baf_k8et

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-fee-gas-tracker-0694c178 -d '<json body>'
```

Example prompt: What are the current gas fees on AmanChain right now — give me the recommended fee tiers so I know what to set before submitting a transaction?

## When to prefer this

Choose this endpoint when you need real-time, node-authoritative gas fee data specifically from the AmanChain network, paid per-call with no API key or account required. Prefer it over general-purpose gas trackers when operating within the AmanChain ecosystem or when you need deterministic, consensus-backed fee data rather than third-party estimates.

## Known failure modes

- Invalid or malformed request string returns an error response
- serviceId mismatch (not 'aman-gas-tracker') causes service routing failure
- Payment not settled or insufficient USDC balance results in x402 payment failure
- Node temporarily unavailable during block sync may return stale or error response
- Network congestion causing delayed consensus state read

## How this service works

Fee & Gas Tracker: 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-gas-tracker","request":"<input>"}. No account, no API key.

## Output

Returns real-time gas price data sourced directly from live AmanChain consensus state, including current network fee estimates (likely broken into tiers such as slow/standard/fast), congestion indicators, and recommended gas settings for submitting transactions.

## 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-gas-tracker\""
      }
     }
    },
    "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-fee-gas-tracker-0694c178/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)
