# CoinAnk Liquidation Map API (via claw402 x402 Gateway)

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

Returns cryptocurrency liquidation map data — aggregated liquidation levels by price for a given trading pair, exchange, and time interval

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/liquidation/liq-map
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-liquidation-map-api-via-claw402-x402-gateway-673cf018
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OIhNjoYhz4cJDK-3O07oF

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-map-api-via-claw402-x402-gateway-673cf018
```

Example prompt: Show me the liquidation map for BTC on Binance using a 12h interval — I want to see where the major liquidation clusters are.

## When to prefer this

Use this endpoint when you need cryptocurrency liquidation heatmap or liquidation level data for a specific trading pair and exchange, especially when you want to identify key price zones where forced liquidations are concentrated. Prefer this over order book data when the focus is on leveraged position liquidation clusters rather than current bid/ask depth.

## Known failure modes

- Missing or invalid symbol returns empty data array
- Unsupported exchange name results in empty or error response
- Invalid interval parameter may return no data
- Payment failure (402) if USDC wallet lacks sufficient funds
- Rate limiting or network timeout from upstream CoinAnk API

## How this service works

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

## Output

Returns a JSON object with code 0 and a data array containing liquidation map entries — price levels and corresponding aggregated liquidation volumes for the specified symbol, exchange, and time interval.

## 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-map-api-via-claw402-x402-gateway-673cf018/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)
