# Numora Financial ROI Calculator

> Numora Financial ROI 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-15).

Calculates return on investment (ROI) given a cost and gain amount

## Facts

- Endpoint: POST https://numormor.netlify.app/api/financial/roi
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-financial-roi-calculator-6ff50203
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__Sliax3Ik46t_rS0B-RAs

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-financial-roi-calculator-6ff50203 -d '<json body>'
```

Example prompt: Calculate the ROI for an investment where I spent $1,200 and got back $1,800 in gains.

## When to prefer this

Use this endpoint when you need a simple, serverless, dependency-free ROI computation from a raw cost and gain figure. Ideal for AI agents performing financial analysis, investment evaluation, or business metric reporting where accuracy and speed matter more than complex portfolio-level calculations.

## Known failure modes

- Missing required field 'cost' returns validation error
- Missing required field 'gain' returns validation error
- Non-numeric values for cost or gain cause parse errors
- Cost of zero may cause division-by-zero error
- Payment failure if x402 micropayment of 0.1 USDC is not properly handled

## 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 object containing the computed ROI value (likely as a percentage), a boolean success flag, and a human-readable computation string describing what was calculated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "cost",
  "gain"
 ],
 "properties": {
  "cost": {
   "type": "number"
  },
  "gain": {
   "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-financial-roi-calculator-6ff50203/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)
