# KiHustle Liquidation Price Estimator

> KiHustle Liquidation Price Estimator 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).

Estimates the liquidation price for a leveraged trading position based on input text describing position parameters

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/liquidation-price-estimator
- 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-liquidation-price-estimator-96e8bb52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9z9IYAppp6LJZVmTKvUyw

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-liquidation-price-estimator-96e8bb52 -d '<json body>'
```

Example prompt: I opened a 10x long on ETH at $2,400 with $500 collateral — can you estimate my liquidation price so I know how much downside room I have?

## When to prefer this

Choose this endpoint when you need a quick, text-driven liquidation price estimate for a leveraged trading position without building a full parametric API call. It is especially useful when position details are expressed in natural language and the agent needs to surface a risk threshold to a user considering or already in a margin trade.

## Known failure modes

- Vague or unparseable text input may return a generic 'processed' result without a meaningful liquidation price
- Missing leverage or collateral details in the text may produce inaccurate estimates
- Unsupported asset types or edge-case parameters may yield incorrect calculations
- Network or payment failure (x402) may prevent the call from completing

## 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 estimated liquidation price and a 'status' field indicating whether the computation succeeded. The agent receives a processed numeric estimate of the price level at which the described leveraged position would be forcibly closed.

## 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-liquidation-price-estimator-96e8bb52/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)
