# AI Rook Liquidation Heatmap

> AI Rook Liquidation Heatmap is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.125/call, status unknown (last checked 2026-09-14).

Returns the current crypto liquidation heatmap for a symbol, showing nearest long and short liquidation levels, leverage intensity, and overall market pressure direction.

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/liquidation-heatmap
- Price: $0.125/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-rook-liquidation-heatmap-1179a781
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-BoBEz5DlymzpkMaD4v0s

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 ai-rook-liquidation-heatmap-1179a781
```

Example prompt: Pull up the liquidation heatmap for BTCUSDT and tell me where the nearest long and short liquidation levels are, how intense they are, and whether the market pressure is bullish or bearish right now.

## When to prefer this

Use this endpoint when you need real-time liquidation zone data for crypto derivatives markets, especially to identify where cascading liquidations could occur, assess leveraged market pressure, or inform trading decisions based on order book liquidation risk. Prefer this over generic price feeds when liquidation-specific intelligence is required.

## Known failure modes

- Invalid or unsupported symbol returns an error — use standard exchange pairs like BTCUSDT
- Payment not included or insufficient USDC triggers HTTP 402 Payment Required
- Network or upstream exchange data unavailability may cause timeouts or stale data
- Malformed query parameters may result in a 400 Bad Request

## How this service works

Live crypto trading intelligence for AI agents — real-time BTC signals, CVD, order flow, and active strategy setups, no API keys or signup. 43 pay-per-call endpoints total: trading data, AI inference (MiniMax M2.7 (456B-parameter Mixture-of-Experts)), web utilities, verification, and ERC-8183 ACP escrow with on-chain ERC-8004 reputation attestation (Agent ID 59646). Four payment rails: USDC on Base mainnet (default), USDC on Solana mainnet, HBAR/USDC on Hedera testnet, USDT on BNB Chain testnet. One free trial call per endpoint. Prices from $0.001/call.

## Output

Returns a JSON object with the trading symbol, overall market pressure label (e.g. 'bullish_leveraged'), current price, timestamp, nearest long liquidation level (price, leverage tier, intensity, distance %), and nearest short liquidation level (price, leverage tier, intensity, distance %).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "default": "BTCUSDT"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTCUSDT",
  "pressure": "bullish_leveraged",
  "timestamp": "2026-07-22T07:00:00Z",
  "current_price": 65420,
  "nearest_long_liq": {
   "leverage": 50,
   "intensity": "critical",
   "price_level": 64074,
   "distance_pct": 2.06
  },
  "nearest_short_liq": {
   "leverage": 50,
   "intensity": "critical",
   "price_level": 66766,
   "distance_pct": 2.06
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-rook-liquidation-heatmap-1179a781/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.ai-rook.com](https://www.zero.xyz/host/agents.ai-rook.com/llms.txt)
