# KiHustle Impermanent Loss Estimator

> KiHustle Impermanent Loss 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 impermanent loss for a liquidity pool position given a price ratio change between two assets.

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/impermanent-loss-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-impermanent-loss-estimator-91d3ff39
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_npIcFK1QHX0YnGlD3Ybp_

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-impermanent-loss-estimator-91d3ff39 -d '<json body>'
```

Example prompt: Can you estimate the impermanent loss I'd experience if the price ratio between my two LP tokens changes by 2.5 — like if one token doubles and a half relative to the other?

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.002 USDC) programmatic impermanent loss estimate based on a price ratio change, especially in DeFi agent workflows evaluating LP positions, yield strategies, or portfolio risk. Prefer this over manual calculation or LLM-based estimation when you need a deterministic numeric result for AMM IL.

## Known failure modes

- Missing or invalid price_ratio_change value returns an error or unexpected result
- price_ratio_change of zero or negative may cause computation errors
- Non-numeric input for price_ratio_change results in a validation failure
- Service may return generic success status even on edge-case inputs due to minimal schema validation

## 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 confirming the request was processed successfully, along with a computed impermanent loss result based on the supplied price ratio change. The result field contains the estimated impermanent loss value or summary derived from standard AMM IL formulas.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "price_ratio_change": {
   "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-impermanent-loss-estimator-91d3ff39/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)
