# CoinAnk Liquidation Heat Map

> CoinAnk Liquidation Heat Map is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Returns cryptocurrency liquidation heat map data showing clustered liquidation levels across exchanges and time intervals

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/liquidation/heat-map
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-liquidation-heat-map-c6f7af83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V6KxDdCAnW_ImZfn5FYSP

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 coinank-liquidation-heat-map-c6f7af83
```

Example prompt: Can you pull up the liquidation heat map for BTC on Binance with a 1-hour interval so I can see where the major liquidation clusters are sitting?

## When to prefer this

Use this endpoint when you need programmatic access to crypto liquidation heat map data without API key registration, paying per-call with USDC via x402 protocol. Prefer this over direct exchange APIs when you need aggregated cross-exchange liquidation visualization data from CoinAnk specifically.

## Known failure modes

- Empty data array returned if symbol or exchange is unsupported
- Payment failure if wallet has insufficient USDC balance
- Invalid symbol or exchange parameter returns error code
- Stale or delayed data if upstream CoinAnk feed is lagging
- Missing required parameters (type, method) causes schema validation error

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

Returns JSON with a code status and a data array containing liquidation heat map entries, showing price levels and liquidation density/cluster data for the specified symbol, exchange, and time interval.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC",
   "exchange": "binance",
   "interval": "1h"
  }
 }
}
```

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coinank-liquidation-heat-map-c6f7af83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
