# Numora Inflation Calculation API

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

Computes the future or real value of a monetary amount after applying an inflation rate over a given number of years

## Facts

- Endpoint: POST https://numomo.vercel.app/api/financial/inflation
- Price: $0.1/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-calculation-api-a09b4929
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uDo-hqIc4aK4G0fS_KmKF

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-calculation-api-a09b4929 -d '<json body>'
```

Example prompt: How much will $25,000 be worth after 15 years if inflation runs at 3.5% per year?

## When to prefer this

Choose this endpoint when you need a pure, dependency-free mathematical computation of inflation's effect on a monetary amount over time. It is ideal for AI agents that need quick, reliable financial math without connecting to live economic data sources or external APIs. Use it over general-purpose calculators when you want a structured JSON result with a human-readable computation description, and when x402 micropayment-based pricing is acceptable.

## Known failure modes

- Missing required fields (rate, years, or amount) returns a validation error
- Non-integer value for years field causes schema validation failure
- Negative or zero values for years or amount may produce unexpected or invalid results
- Network or server errors on the Vercel deployment may return 5xx responses
- Payment failure via x402 micropayment protocol blocks the request before computation

## 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 flag, a result object containing the inflation-adjusted or future value of the input amount, and a human-readable computation string describing what was calculated (e.g. future value after cumulative inflation applied over the specified years).

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