# Numora Compound Interest Calculator

> Numora Compound Interest 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-14).

Computes compound interest growth for a principal amount given an interest rate, number of periods, and optional compounding frequency

## Facts

- Endpoint: POST https://numormo.vercel.app/api/financial/compound-interest
- 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-compound-interest-calculator-f603558b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7KakB3SodGmUgS0ToA8jD

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-compound-interest-calculator-f603558b -d '<json body>'
```

Example prompt: Calculate the compound interest on a $5,000 principal at 6% annual interest rate over 10 periods, compounded 12 times per year.

## When to prefer this

Choose this endpoint when you need a reliable, serverless, zero-dependency computation of compound interest with optional control over compounding frequency. Ideal for AI agents that need precise financial math without relying on LLM arithmetic or importing a library. Prefer over general-purpose math APIs when the input/output schema maps cleanly to compound interest variables.

## Known failure modes

- Missing required fields (rate, periods, principal) returns a 400-level error
- Non-numeric values for numeric fields cause validation errors
- Negative principal or rate may produce unexpected or invalid results
- Payment failure via x402 micropayment protocol results in access denial

## 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 computed values (such as final balance and interest earned), and a human-readable computation string describing what was calculated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "rate",
  "periods",
  "principal"
 ],
 "properties": {
  "rate": {
   "type": "number"
  },
  "periods": {
   "type": "number"
  },
  "principal": {
   "type": "number"
  },
  "compoundsPerYear": {
   "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-compound-interest-calculator-f603558b/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)
