# 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 from a submitted text or data input, likely representing a financial return series or portfolio history

## Facts

- Endpoint: POST https://kihustle.tech/nexus/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-e7754a04
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__42v6O_veMTDb57FqHYkE

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

Example prompt: Calculate the maximum drawdown for this portfolio return series: '0.05, -0.03, 0.02, -0.08, -0.12, 0.04' so I can see the worst peak-to-trough loss.

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.002) computation of maximum drawdown from a return or value series expressed as text. Prefer this over building your own calculation when integrating into an automated financial analysis workflow or agent pipeline that needs on-demand risk metrics without maintaining custom computation infrastructure.

## Known failure modes

- Invalid or unparseable text input returns an error or unexpected result
- Empty text field may cause a processing failure
- Non-numeric or malformed return series strings may not be interpreted correctly
- Ambiguous input format (e.g. commas vs spaces) may yield incorrect calculations
- Service may return generic 'processed/success' response without meaningful drawdown data if input schema is misunderstood

## 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

A JSON object containing the computed maximum drawdown result, typically expressed as a percentage or decimal representing the largest peak-to-trough decline in the submitted return or value series, along with a success status indicator.

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