# KiHustle Financial Ratios Calculator

> KiHustle Financial Ratios 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 key financial ratios (liquidity, leverage, etc.) from balance sheet inputs such as inventory, debt, equity, and current assets/liabilities

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/financial-ratios
- 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-financial-ratios-calculator-59ff29ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_73Dk0jX5hw2wo1i2V22UC

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-financial-ratios-calculator-59ff29ff -d '<json body>'
```

Example prompt: Calculate the financial ratios for a company with inventory of 50000, total debt of 200000, total equity of 150000, current assets of 120000, and current liabilities of 80000.

## When to prefer this

Choose this endpoint when you need a quick, low-cost computation of standard financial ratios from raw balance sheet numbers without building the formulas yourself. Useful in agent workflows that need to assess company financial health, screen investments, or benchmark businesses programmatically.

## Known failure modes

- Missing required fields (inventory, total_debt, total_equity, current_assets, current_liabilities) may return an error or incomplete ratios
- Division by zero if current_liabilities or total_equity is 0
- Non-numeric input values causing processing failures
- Response schema is minimal and may not enumerate all computed ratio fields explicitly

## 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 indicating the processed ratios and a 'status' field confirming success. Based on inputs, the endpoint likely returns computed financial metrics such as current ratio, debt-to-equity ratio, and potentially inventory-related ratios derived from the provided balance sheet figures.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "inventory": {
   "type": "number"
  },
  "total_debt": {
   "type": "number"
  },
  "total_equity": {
   "type": "number"
  },
  "current_assets": {
   "type": "number"
  },
  "current_liabilities": {
   "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-financial-ratios-calculator-59ff29ff/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)
