# Numora Inflation Calculator

> Numora Inflation Calculator is a paid API for AI agents from numormo.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

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

## Facts

- Endpoint: POST https://numormo.vercel.app/api/financial/inflation
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-inflation-calculator-5e27dd88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SzSsP5KOg6jUW-Mz2iKNi

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-5e27dd88 -d '<json body>'
```

Example prompt: What will $50,000 be worth in 15 years if inflation runs at 3.5% annually? Use pure math computation — no external data sources.

## When to prefer this

Choose this endpoint when you need a deterministic, server-side inflation adjustment computation with no external data dependencies — ideal when you already have the inflation rate and want a precise mathematical result rather than a lookup of current real-world CPI data. Prefer this over statistics APIs or data providers when the rate is known and the task is purely mathematical.

## Known failure modes

- Missing required fields (rate, years, amount) returns a 400-level error
- Non-numeric or negative values for rate or amount may cause a computation error
- Zero or negative years may produce undefined or error behavior
- Insufficient USDC balance for x402 micropayment causes payment failure and no computation
- Extremely large exponents (very high years) may cause floating-point overflow

## 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 `success` boolean, a `result` object containing the inflation-adjusted value and intermediate computation details, and a human-readable `computation` string describing what was calculated (e.g. original amount, rate, years, and final adjusted figure).

## 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-5e27dd88/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormo.vercel.app](https://www.zero.xyz/host/numormo.vercel.app/llms.txt)
