# AmanChain AMAN Price Feed

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

Returns the live AMAN token price derived from real AMM pool reserves on AmanChain

## Facts

- Endpoint: POST https://amanchain-relay.gitajhd.workers.dev/api/x402/aman-price-feed
- Price: $0.003732/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-aman-price-feed-789b0e25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RdSkGc6ofhP8hZ9RtiCVJ

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-aman-price-feed-789b0e25 -d '<json body>'
```

Example prompt: What's the current live price of AMAN token right now, pulled straight from the AMM pool reserves on AmanChain?

## When to prefer this

Use this endpoint when you specifically need the AMAN token price as calculated from on-chain AMM reserves on AmanChain. Unlike general crypto price APIs that aggregate exchange data, this endpoint reads directly from live pool balances for a deterministic, consensus-backed price.

## Known failure modes

- Payment not included or insufficient USDC — request rejected with 402
- Invalid or malformed request body — returns error
- AmanChain node unavailable or out of sync — may return stale or error response
- Incorrect serviceId provided — service not found error

## How this service works

Real-time AMAN token price in USD from live AMM pool reserves — spot price, 24h change percent, TVL and 24h volume; crypto price oracle feed. 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-price-feed","request":"<input>"}.

## Output

A live AMAN token price derived from real AMM pool reserve balances on AmanChain, reflecting the current consensus state of the chain.

## 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-aman-price-feed-789b0e25/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)
