Get Liquidation History
Get aggregated liquidation history for a cryptocurrency across all exchanges. Returns long/short liquidation amounts in USD with price OHLC data for each time interval. Ideal for: liquidation analysis, market sentiment tracking, risk assessment, trading signals.
Catalog action Blockchain Data
Get aggregated liquidation history for a cryptocurrency across all exchanges. Returns long/short liquidation amounts in USD with price OHLC data for each time interval. Ideal for: liquidation analysis, market sentiment tracking, risk assessment, trading signals.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-get-liquidation-history |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, liquidation, futures, derivatives, market, historical, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Coin symbol (e.g., 'BTC', 'ETH') |
interval | string | Yes | Time interval for data aggregation |
limit | number | No | Number of results to return (default: 1000, max: 4500) |
startTime | number | No | Start timestamp in milliseconds |
endTime | number | No | End timestamp in milliseconds |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Coin symbol |
interval | string | Yes | Time interval |
candles | array | Yes | Array of liquidation history candles |
Examples
json{ "type": "coinglass-get-liquidation-history", "payload": { "symbol": "ETH", "interval": "1h" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-get-liquidation-history/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "symbol": "ETH", "interval": "1h" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
