# 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-14).

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

## Facts

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

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

Example prompt: Can you calculate the net present value of an investment with cash flows of [-10000, 3000, 4000, 5000, 4000] and a discount rate of 8%?

## When to prefer this

Choose this endpoint when you need a quick, low-cost programmatic NPV calculation without setting up a local financial library. Particularly useful in agent workflows that need to evaluate investment returns, compare project viability, or run financial sensitivity analyses on the fly.

## Known failure modes

- Invalid or missing cash_flows array returns an error
- Non-numeric values in cash_flows cause processing failure
- Missing discount_rate parameter leads to computation error
- Discount rate of -1 or less (implying division by zero) may cause arithmetic error
- Empty cash_flows array may return zero or an error
- Payment failure via x402 protocol prevents endpoint access

## 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 whether the discounted cash flow computation completed successfully.

## 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-d73871e7/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)
