# Sindri Emergency Fund Calculator

> Sindri Emergency Fund Calculator is a paid API for AI agents from x402.outpimp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Multiplies monthly essential expenses by a chosen runway length (in months) to compute a target emergency savings amount.

## Facts

- Endpoint: POST https://x402.outpimp.com/emergencyFundCalculator
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sindri-emergency-fund-calculator-ac81b117
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QWJOm8Y4yjt9MJAwl4MKQ

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 sindri-emergency-fund-calculator-ac81b117 -d '<json body>'
```

Example prompt: How much do I need in my emergency fund if my monthly essential expenses are $2,800 and I want 6 months of coverage?

## When to prefer this

Use this endpoint when you need a quick, deterministic emergency fund target based solely on monthly expenses and desired runway months — ideal for personal finance agents, budgeting tools, or financial planning workflows that need a serverless, pay-per-call computation without maintaining local logic.

## Known failure modes

- Missing monthlyExpenses field returns an error or zero result
- Non-numeric input values cause computation failure
- Negative or zero values for either parameter may return nonsensical results
- Network or payment authorization failure returns HTTP 402 or 5xx

## How this service works

Emergency fund calculator. Multiplies monthly essential expenses by a chosen runway length (in months) to compute a target emergency savings amount.

## Output

A single computed dollar amount representing the total emergency savings target, derived by multiplying the provided monthly essential expenses by the desired number of runway months.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "runwayMonths": {
   "type": "number",
   "default": 6,
   "description": "Desired months of expense coverage. Default 6."
  },
  "monthlyExpenses": {
   "type": "number",
   "description": "Monthly essential expenses."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sindri-emergency-fund-calculator-ac81b117/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.outpimp.com](https://www.zero.xyz/host/x402.outpimp.com/llms.txt)
