# AirdropPulse GigaDex Rebalance Scenario Comparison

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

Compares a GigaDex LP position's current range versus a same-width range recentered on the current price, providing probability-in-range, expected time-in-range, capital efficiency, and rebalance cost analytics on Robinhood Chain.

## Facts

- Endpoint: GET https://airdroppulse.theaslangroupllc.com/api/lp/rebalance-check
- Price: $0.1/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-rebalance-scenario-comparison-7e11f18b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t-BqXt18WJ9w8oTKotPAi

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-rebalance-scenario-comparison-7e11f18b
```

Example prompt: My GigaDex LP position on the GIGA/USDC pool on Robinhood Chain is currently out of range — can you run a rebalance scenario comparison showing my current range vs a same-width range recentered on today's price, including the probability I'd stay in range over the next 24 hours and what the rebalance cost looks like versus the capital efficiency gain?

## When to prefer this

Choose this endpoint when an agent needs a quantitative, side-by-side comparison of keeping versus recentering a GigaDex concentrated liquidity position on Robinhood Chain, specifically including probability-in-range at a future horizon, time-in-range share, capital efficiency, and rebalance cost analysis in a single call. Prefer it over the LP health check endpoint when the user needs scenario modeling rather than a simple status poll, and over the IL scenario table when rebalancing decision analytics (not just impermanent loss) are needed.

## Known failure modes

- Invalid or unrecognized pool address returns a 400 error
- Position not found or already closed returns empty or error response
- Horizon parameter out of supported range returns validation error
- Insufficient on-chain data for volatility modeling returns degraded or partial result
- Payment not completed or x402 auth failure returns 402 Payment Required
- Robinhood Chain RPC unavailability causes timeout or 503 error

## How this service works

GigaDex rebalance scenario comparison (Robinhood Chain) — side-by-side model of a position’s current range versus a same-width range recentered on the current price: probability-in-range at horizon, expected time-in-range share and capital-efficiency, plus static GIGA Protect / rebalance-cost considerations. Analytics only, not a recommendation to act.

## Output

Returns a side-by-side scenario model comparing the user's current LP range and a hypothetical same-width range recentered on the current price, including: probability-in-range at a specified horizon, expected time-in-range share, capital efficiency metrics for both scenarios, and static GIGA Protect and rebalance-cost considerations. Results are analytics only and not trading recommendations.

## 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": {
      "token_id": {
       "type": "string",
       "description": "required"
      },
      "horizon_days": {
       "type": "string",
       "description": "holding-period horizon in days for the scenario comparison (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",
  "method": "Side-by-side scenario comparison under zero-drift GBM on trailing realized vol; not a recommendation to act.",
  "token_id": "4821",
  "disclaimer": "Educational analytics… not investment advice.",
  "current_tick": 107697,
  "current_range": {
   "tick_lower": 104960,
   "tick_upper": 110400,
   "capital_efficiency_x": 13.7,
   "prob_in_range_at_horizon": 0.55,
   "distance_to_lower_edge_pct": 2.6,
   "distance_to_upper_edge_pct": 2.4,
   "expected_time_in_range_share": 0.71
  },
  "considerations": [
   "GIGA Protect: rapid liquidity add/remove cycling can forfeit campaign rewards — per official docs, avoid rapid rebalance cycles during points campaigns.",
   "Rebalancing realizes any divergence loss and incurs gas + swap fees.",
   "A recentered range restarts fee accrual position but does not recover forfeited time out of range."
  ],
  "recentered_same_width": {
   "tick_lower": 105300,
   "tick_upper": 110740,
   "capital_efficiency_x": 13.7,
   "prob_in_range_at_horizon": 0.62,
   "distance_to_lower_edge_pct": 3.1,
   "distance_to_upper_edge_pct": 3,
   "expected_time_in_range_share": 0.78
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airdroppulse-gigadex-rebalance-scenario-comparison-7e11f18b/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)
