# KiHustle Maximum Drawdown Calculator

> KiHustle Maximum Drawdown 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 maximum drawdown metric from a given set of financial or portfolio return data provided as text

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/maximum-drawdown-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-maximum-drawdown-calculator-efaf518f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_69SH5yqwYMlC52d9aYVnt

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-maximum-drawdown-calculator-efaf518f -d '<json body>'
```

Example prompt: Can you calculate the maximum drawdown for this return series: '0.05, -0.03, 0.02, -0.08, -0.04, 0.06, -0.01'?

## When to prefer this

Choose this endpoint when you need a lightweight, low-cost API call to compute maximum drawdown from a textual return series without setting up a full financial analytics platform. It is suitable for quick risk checks, backtesting summaries, or embedding drawdown calculations in automated financial workflows.

## Known failure modes

- Invalid or empty text input returns an error or null result
- Malformed return series (non-numeric values) may produce unexpected output
- Missing required 'text' field in request body causes a validation error
- Service unavailability may return a non-200 HTTP response

## 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 indicating the computed maximum drawdown result and a success status, typically including the drawdown value derived from the submitted return series text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## 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-maximum-drawdown-calculator-efaf518f/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)
