# Numora Compound Interest Calculator

> Numora Compound Interest Calculator is a paid API for AI agents from numormor.netlify.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Computes compound interest growth given a principal, interest rate, number of periods, and optional compounding frequency per year

## Facts

- Endpoint: POST https://numormor.netlify.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-fb90e35e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u38dUmdkMdLTOcLi0rfLz

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

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

## When to prefer this

Use this endpoint when you need a precise, server-side compound interest computation with configurable compounding frequency, especially within an automated agent workflow that can handle x402 micropayments on Base. Prefer over a local formula when auditability of computation or integration into a broader math API suite is desired.

## Known failure modes

- Missing required fields (rate, periods, or principal) returns a validation error
- Non-numeric values for numeric fields cause a 400 or schema error
- Negative periods or zero principal may produce mathematically invalid results
- Payment failure via x402 micropayment returns a 402 Payment Required response

## 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 computed compound interest values (e.g. final amount, 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-fb90e35e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormor.netlify.app](https://www.zero.xyz/host/numormor.netlify.app/llms.txt)
