# Numora IRR (Internal Rate of Return) Calculator

> Numora IRR (Internal Rate of Return) 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 the Internal Rate of Return (IRR) for a series of cash flows using pure mathematical computation

## Facts

- Endpoint: POST https://numormor.netlify.app/api/financial/irr
- 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-irr-internal-rate-of-return-calculator-fee54700
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gFKmco-5EiF8GPIgZZIs2

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-irr-internal-rate-of-return-calculator-fee54700 -d '<json body>'
```

Example prompt: Calculate the IRR for a project with these cash flows: -10000 at year 0, then 3000, 4000, 4000, and 3500 in the following four years.

## When to prefer this

Use this endpoint when you need a pure server-side mathematical IRR computation with no external data dependencies, especially in agentic workflows requiring micropayment-gated financial math. Prefer over spreadsheet tools when you need a reliable API call, and over general-purpose LLM math when precision is required.

## Known failure modes

- No real IRR exists if cash flows never change sign — returns error or NaN
- IRR may not converge if cash flows have multiple sign changes (multiple IRR problem)
- Empty or single-element cashflows array may return validation error
- Non-numeric values in cashflows array cause computation failure
- All-positive or all-negative cash flows have no valid IRR solution

## 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 success status, a result object containing the computed IRR as a decimal or percentage, and a human-readable computation description explaining what was calculated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "cashflows"
 ],
 "properties": {
  "cashflows": {
   "type": "array"
  }
 }
}
```

## 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-irr-internal-rate-of-return-calculator-fee54700/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)
