# Numora IRR (Internal Rate of Return) Calculator

> Numora IRR (Internal Rate of Return) 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-13).

Computes the Internal Rate of Return (IRR) for a series of cash flows using numerical methods

## Facts

- Endpoint: POST https://numomo.vercel.app/api/financial/irr
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-irr-internal-rate-of-return-calculator-c40188f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uU7SngyI7UE33-B_Ai7bQ

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

Example prompt: Calculate the IRR for an investment where I pay $10,000 upfront and then receive $3,000, $4,500, $4,000, and $3,500 over the next four years — what's my annualized return rate?

## When to prefer this

Choose this endpoint when you need a pure numerical IRR computation with no external data dependencies, and want a fast, deterministic result paid per-call via x402 micropayments. Ideal for AI agents embedded in financial analysis workflows that need to compute IRR on demand without managing a full financial data subscription. Prefer this over spreadsheet tooling or general-purpose code execution when you need a reliable, single-purpose API call.

## Known failure modes

- No valid IRR exists if cash flows never change sign (all positive or all negative) — solver may return an error or NaN
- Non-convergence if cash flows have multiple sign changes producing multiple IRRs
- Empty or single-element cashflows array returns an error
- Extreme cash flow magnitudes may cause numerical instability
- Missing required cashflows field returns a validation error

## 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 boolean, a result object containing the computed IRR value (typically as a decimal or percentage), and a human-readable computation string describing 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-c40188f5/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)
