# AmanChain Staking Rewards Calculator

> AmanChain Staking Rewards Calculator 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).

Calculates staking rewards for blockchain pools using live on-chain consensus state, paid per call via x402 in USDC

## Facts

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

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-staking-rewards-calculator-b1e03cc5 -d '<json body>'
```

Example prompt: Can you calculate my expected staking rewards for a pool using live on-chain data — I want to know how much I'd earn based on current consensus state?

## When to prefer this

Choose this endpoint when you need deterministic, live on-chain staking reward calculations backed by real blockchain consensus state rather than static or estimated data. It is ideal for agents requiring pay-per-call access without API keys or account registration, settling in USDC on Base via x402.

## Known failure modes

- Invalid or missing serviceId returns an error
- Malformed request JSON body causes a 400-level response
- Insufficient USDC payment via x402 results in payment failure and no computation
- Live chain data temporarily unavailable may cause timeout or error
- Unsupported pool or staking parameters return empty or error results

## How this service works

Staking Rewards Calculator: 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-staking-rewards","request":"<input>"}. No account, no API key.

## Output

Returns computed staking reward projections based on live on-chain consensus data, including expected yield, APY, and reward amounts for the specified staking parameters.

## 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-staking-rewards\""
      }
     }
    },
    "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-staking-rewards-calculator-b1e03cc5/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)
