# Numora Inflation Calculator

> Numora Inflation Calculator is a paid API for AI agents from numorapoi.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Computes the inflation-adjusted value of an amount over a given number of years at a specified inflation rate

## Facts

- Endpoint: POST https://numorapoi.orbonomy.xyz/api/financial/inflation
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-inflation-calculator-22123e35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LRSOxWijhlHqNZb8m4Zyf

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 numora-inflation-calculator-22123e35 -d '<json body>'
```

Example prompt: What will $10,000 be worth after 15 years of 3.5% annual inflation? Just compute the inflation-adjusted value using pure math — no external data needed.

## When to prefer this

Choose this endpoint when you need a self-contained, serverless math computation for inflation adjustment with no external data dependencies (i.e., you already know the inflation rate and do not need to fetch live CPI data). It is ideal for financial planning calculations, purchasing power projections, or educational scenarios where the user supplies the rate and time horizon directly.

## Known failure modes

- Missing required fields (rate, years, or amount) returns a 400-level error
- Non-integer value for 'years' may cause a validation error
- Negative rate or amount may produce unexpected results or errors
- Payment failure via x402 micropayment prevents the call from completing
- Extreme values (very large years or rates) may cause numerical overflow in the result

## How this service works

100 pure math computation endpoints for AI agents. Statistics, financial math, linear algebra, equation solving, calculus, number theory, sequence generation, and unit conversions. Zero external dependencies. x402 micropayments on Base.

## Output

Returns a JSON object with a 'result' containing the inflation-adjusted computation output, a 'success' boolean set to true, and a 'computation' string describing in human-readable terms what was calculated (e.g. the future inflation-eroded value of the input amount).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "rate",
  "years",
  "amount"
 ],
 "properties": {
  "rate": {
   "type": "number"
  },
  "years": {
   "type": "integer"
  },
  "amount": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "result",
  "computation"
 ],
 "properties": {
  "result": {
   "type": "object",
   "description": "Computation result varies by endpoint"
  },
  "success": {
   "type": "boolean",
   "description": "Always true on success"
  },
  "computation": {
   "type": "string",
   "description": "Human-readable description of what was computed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/numora-inflation-calculator-22123e35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numorapoi.orbonomy.xyz](https://www.zero.xyz/host/numorapoi.orbonomy.xyz/llms.txt)
