# AirdropPulse GigaDex Impermanent Loss Forecast

> AirdropPulse GigaDex Impermanent Loss Forecast is a paid API for AI agents from airdroppulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns a scenario table of impermanent loss vs HODL value across hypothetical exit prices for a concentrated-liquidity position on GigaDex (Robinhood Chain), plus a naive fee-capture estimate based on realized volatility over a holding horizon.

## Facts

- Endpoint: GET https://airdroppulse.theaslangroupllc.com/api/lp/il-forecast
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/airdroppulse-gigadex-impermanent-loss-forecast-1520155e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2RpqRKf19124V88m0jNWg

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 airdroppulse-gigadex-impermanent-loss-forecast-1520155e
```

Example prompt: Show me an impermanent loss scenario table for a GigaDex concentrated LP position on the WETH/USDC pair with a price range of $2,800 to $3,200, current price $3,000, over a 14-day holding horizon — and include the fee-capture estimate based on realized volatility.

## When to prefer this

Choose this endpoint when you need a pre-trade or ongoing impermanent loss scenario analysis for a GigaDex concentrated-liquidity position on Robinhood Chain, especially when you want a multi-scenario table across exit prices combined with a fee-capture estimate. Prefer this over generic IL calculators when the position is on GigaDex / Robinhood Chain specifically, as it uses chain-native realized volatility data. Not suitable for executing trades, managing positions, or monitoring live position health (use the sibling health-check endpoint for that).

## Known failure modes

- Invalid price range (lower tick >= upper tick) returns a 400 error
- Current price outside plausible market bounds returns validation error
- Unsupported token pair on Robinhood Chain / GigaDex returns 404 or empty result
- Missing required parameters (price range, current price, horizon) returns 422
- Realized volatility data unavailable for pair returns degraded fee estimate or error
- Payment not settled (x402) returns 402 Payment Required

## How this service works

Impermanent-loss scenario table for a concentrated-liquidity range on any Uniswap-v3-compatible pool across 11 chains (Ethereum, Base, Arbitrum, Polygon, BNB, HyperEVM, Monad, Robinhood Chain and more) — exact CL-vs-HODL value at a spread of hypothetical exit-price moves, plus probability-in-range from realized volatility (pool TWAP oracle, or indexer on GigaDex, the default). Analytics only, non-custodial, no execution.

## Output

A scenario table with CL vs HODL value deltas at a spread of hypothetical exit prices (e.g. -50% to +50%), showing exact impermanent loss at each price point for the specified concentrated-liquidity range, plus a naive fee-capture estimate over the holding horizon derived from realized volatility. All output is analytics-only with no trade execution.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "pool": {
       "type": "string",
       "description": "required — on GigaDex, discover pools via /api/points/pool-ev or /api/points/entry-guide"
      },
      "chain": {
       "type": "string",
       "description": "eip155 chain id (optional; default 4663 GigaDex/Robinhood). Supported: 1, 10, 56, 137, 143, 480, 999, 4663, 8453, 42161, 43114"
      },
      "lower_pct": {
       "type": "string",
       "description": "lower range bound as % below current price, e.g. 15 = price × 0.85 (default: 15, clamped 0.5-95)"
      },
      "upper_pct": {
       "type": "string",
       "description": "upper range bound as % above current price, e.g. 15 = price × 1.15 (default: 15, clamped 0.5-500)"
      },
      "horizon_days": {
       "type": "string",
       "description": "holding-period horizon in days for the fee/probability estimate (default: 14, max 90)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pair": "WETH/PONS",
  "pool": "0x50e4…",
  "range": {
   "lower_pct": 15,
   "upper_pct": 15,
   "tick_lower": 104960,
   "tick_upper": 110400
  },
  "method": "Exact piecewise CL-vs-HODL valuation at each hypothetical exit price; fee estimate is a naive scenario metric, not a forecast.",
  "il_table": [
   {
    "il_pct": -3.2,
    "price_move_pct": -50,
    "lp_value_per_dollar": 0.86,
    "hodl_value_per_dollar": 0.75
   }
  ],
  "disclaimer": "Educational analytics… not investment advice.",
  "current_tick": 107697,
  "horizon_days": 14,
  "current_price": 0.0000451,
  "prob_in_range_at_horizon": 0.55,
  "est_fees_over_horizon_pct": 2.1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airdroppulse-gigadex-impermanent-loss-forecast-1520155e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from airdroppulse.theaslangroupllc.com](https://www.zero.xyz/host/airdroppulse.theaslangroupllc.com/llms.txt)
