# KiHustle DSCR Calculator

> KiHustle DSCR 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).

Computes the Debt Service Coverage Ratio (DSCR) given net operating income and total debt service

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/dscr-calculator
- 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-dscr-calculator-d98134bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X3fYngJuEfF7M1EFxNNxQ

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-dscr-calculator-d98134bc -d '<json body>'
```

Example prompt: Can you calculate the DSCR for a property with a net operating income of $120,000 and total annual debt service of $95,000?

## When to prefer this

Use this endpoint when you need a quick, programmatic DSCR computation without setting up your own arithmetic pipeline — particularly useful in real estate underwriting workflows, loan screening automations, or investment evaluation agents that need a reliable single-call ratio computation.

## Known failure modes

- Missing required fields (net_operating_income or total_debt_service) returns an error
- Division by zero if total_debt_service is 0
- Negative or nonsensical inputs may return unexpected results
- Payment failure (402) if USDC balance is insufficient

## 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 confirming the computation was processed successfully, along with a result field indicating the computed DSCR value or outcome status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "total_debt_service": {
   "type": "number"
  },
  "net_operating_income": {
   "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-dscr-calculator-d98134bc/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)
