# Numora Compound Interest Calculator

> Numora Compound Interest Calculator is a paid API for AI agents from numorapoi.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: POST https://numorapoi.orbonomy.xyz/api/financial/compound-interest
- Price: $0.05/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-a7d12e0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GpdQzq1KJjPPWOSGtsjwL

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

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

## When to prefer this

Choose this endpoint when you need a pure server-side computation of compound interest with no external data dependencies, especially in automated pipelines or AI agent workflows that require deterministic financial math without relying on a spreadsheet or external financial service. Ideal for quick, cheap per-call computations via x402 micropayments on Base.

## Known failure modes

- Missing required fields (rate, periods, or principal) returns a validation error
- Non-numeric values for numeric fields cause a 400 bad request
- Zero or negative principal may return unexpected results
- Very large exponents may produce overflow or precision issues
- Payment failure via x402 micropayment returns 402 Payment Required

## 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, total interest), 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-a7d12e0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numorapoi.orbonomy.xyz](https://www.zero.xyz/host/numorapoi.orbonomy.xyz/llms.txt)
