# AMAN Price Feed

> AMAN Price Feed 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).

Retrieves the live AMAN token price derived from real AMM reserve balances on AmanChain

## Facts

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

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

Example prompt: What's the current live price of AMAN token from the AmanChain AMM reserves?

## When to prefer this

Choose this endpoint when you need a trustless, node-executed, on-chain price for the AMAN token derived directly from AMM reserves rather than a centralized exchange feed. It requires no API key or account, only a per-call USDC micropayment via x402 on Base, making it suitable for automated agent pipelines that need verifiable, consensus-state-backed pricing.

## Known failure modes

- Payment not settled — x402 USDC payment on Base failed or was insufficient, request rejected
- Invalid serviceId — if serviceId is not exactly 'aman-price-feed', the request will be rejected
- AmanChain node unavailable — node is not synced or offline, no price returned
- Malformed request body — missing or incorrectly typed 'request' or 'serviceId' fields
- Stale data — in edge cases of chain reorgs or network lag, returned price may be momentarily inconsistent

## How this service works

AMAN Price Feed: live AMAN price from real AMM reserves 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-price-feed","request":"<input>"}. No account, no API key.

## Output

Returns the live AMAN token price derived from actual AMM pool reserve balances as recorded on AmanChain's current consensus state, reflecting the real-time spot price of the AMAN token.

## 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-price-feed\""
      }
     }
    },
    "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/aman-price-feed-ac0d754f/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)
