# CoinAnk Liquidation History API (via claw402 x402 Gateway)

> CoinAnk Liquidation History 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-14).

Retrieves historical cryptocurrency liquidation data by symbol, exchange, interval, and time range, payable per-call with USDC via x402 protocol.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/liquidation/history
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-liquidation-history-api-via-claw402-x402-gateway-810ef733
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_efl3tpvygUGAnG49B1ckd

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-history-api-via-claw402-x402-gateway-810ef733
```

Example prompt: Pull the liquidation history for BTCUSDT on Binance for the last 24 hours using a 1-hour interval and return the 20 most recent records.

## When to prefer this

Use this endpoint when you need historical crypto liquidation event data filtered by trading symbol, exchange, and time interval, and you want to pay per-call in USDC without managing API keys or account registration. Prefer this over exchange-native APIs when building permissionless, wallet-authenticated data pipelines.

## Known failure modes

- Empty data array returned if no liquidations match the query parameters
- Invalid symbol or exchange name results in empty or error response
- Missing required query parameters may return a code indicating bad request
- Payment failure via x402 protocol blocks the request before it reaches the data layer
- Unsupported interval value may return no results or an error code

## 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 status code and an array of liquidation history records matching the specified symbol, exchange, interval, and time range filters.

## 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": {
      "size": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "endTime": {
       "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-history-api-via-claw402-x402-gateway-810ef733/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)
