# Numora Compound Interest Calculator

> Numora Compound Interest Calculator 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 compound interest growth given a principal amount, interest rate, number of periods, and optional compounding frequency per year

## Facts

- Endpoint: POST https://numomo.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-c18727b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6nPPSF6iYxEf42IkkawKZ

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

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

## When to prefer this

Choose this endpoint when you need a deterministic, serverless compound interest calculation with zero external dependencies. It's ideal for AI agents performing inline financial math without relying on web scraping, LLM arithmetic, or third-party financial APIs. Prefer it when exact formula-based computation is required for savings, loans, or investment projections.

## Known failure modes

- Missing required fields (principal, rate, or periods) returns a validation error
- Non-numeric values for numeric fields cause a bad request error
- Negative or zero periods may produce undefined mathematical results
- Very large exponents could cause floating-point overflow
- Payment failure via x402 micropayment prevents the call from completing

## 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 computed compound interest values (e.g. final balance, interest earned), a 'success' boolean flag, and a 'computation' string describing in plain English 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-c18727b5/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)
