# KiHustle Net Present Value Calculator

> KiHustle Net Present Value Calculator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Computes the net present value (NPV) of a series of cash flows given a discount rate

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/net-present-value
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-net-present-value-calculator-0a5e58af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FFXYy0tK3bYUvU_wF4vcg

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 kihustle-net-present-value-calculator-0a5e58af -d '<json body>'
```

Example prompt: Calculate the net present value for me: I have cash flows of [-1000, 300, 400, 500, 600] and a discount rate of 10%.

## When to prefer this

Use this endpoint when you need a quick, programmatic NPV calculation without setting up a local financial library — particularly useful in agent workflows evaluating investment or project viability where a simple cash-flow array and discount rate are available.

## Known failure modes

- Missing or malformed cash_flows array returns an error
- Invalid or non-numeric discount_rate causes a processing failure
- Empty cash_flows array may return zero or an error
- Extremely large arrays or out-of-range rates may produce unexpected results
- Network or payment authorization failure returns HTTP 402

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object containing the computed net present value result and a success status indicator, reflecting the discounted sum of all provided cash flows at the given rate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cash_flows": {
   "type": "array",
   "items": {
    "type": "number"
   }
  },
  "discount_rate": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-net-present-value-calculator-0a5e58af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
