# CoinAnk Aggregated Liquidation Map

> CoinAnk Aggregated Liquidation 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 aggregated cryptocurrency liquidation map data for a given base coin and time interval, showing clustered liquidation levels across exchanges.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/liquidation/agg-liq-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-aggregated-liquidation-map-5ec67cac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BsRVPmwIwc5q6HW837kOk

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-aggregated-liquidation-map-5ec67cac
```

Example prompt: Show me the aggregated liquidation map for BTC on the 4h interval — I want to see where the major liquidation clusters are sitting right now.

## When to prefer this

Use this endpoint when you need aggregated cryptocurrency liquidation map data from CoinAnk, specifically for identifying price levels with high liquidation concentrations across multiple exchanges. Prefer this over raw exchange data when you want a pre-aggregated view of liquidation clusters for trading analysis or risk assessment.

## Known failure modes

- Empty data array returned if no liquidation data exists for the requested coin/interval
- Invalid baseCoin value returns error or empty result
- Unsupported interval value may return empty data
- Payment failure (402) if USDC wallet balance is insufficient
- Rate limiting or gateway timeout if service is overloaded

## 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 a code field (0 = success) and a data array containing aggregated liquidation map entries for the specified coin and interval, representing clustered liquidation levels across crypto exchanges.

## 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": {
      "baseCoin": {
       "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-aggregated-liquidation-map-5ec67cac/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)
