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

Calculates the Debt Service Coverage Ratio (DSCR) from net operating income and total debt service inputs

## Facts

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

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

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

## When to prefer this

Use this endpoint when you need a quick, low-cost programmatic DSCR calculation — especially in real estate investment workflows, loan pre-qualification checks, or financial automation pipelines where you already have NOI and debt service figures available. Suitable for agents building side-hustle or passive income analysis tools.

## Known failure modes

- Missing required fields (total_debt_service or net_operating_income) may return an error or unexpected result
- Division by zero if total_debt_service is 0
- Non-numeric inputs may cause a processing error
- Generic response schema offers limited error detail beyond success/failure status

## 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 with a 'result' field containing the computed DSCR value and a 'status' field indicating success. The DSCR is calculated as net operating income divided by total debt service, giving a ratio that indicates whether income sufficiently covers debt obligations.

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