Get Liquidation Orders
Get individual liquidation orders from the past 7 days. Returns up to 200 orders filtered by exchange, symbol, and minimum USD value. Includes price, side (long/short), and timestamp. Ideal for: whale liquidation tracking, large order alerts, market event analysis, trading signals.
Catalog action Blockchain Data
Get individual liquidation orders from the past 7 days. Returns up to 200 orders filtered by exchange, symbol, and minimum USD value. Includes price, side (long/short), and timestamp. Ideal for: whale liquidation tracking, large order alerts, market event analysis, trading signals.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-get-liquidation-orders |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, liquidation, futures, derivatives, whales, trading, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | string | Yes | Exchange name (e.g., 'Binance', 'OKX', 'Bybit') |
symbol | string | Yes | Coin symbol (e.g., 'BTC', 'ETH') |
minLiquidationAmount | string | Yes | Minimum liquidation amount in USD (e.g., '10000' for $10k minimum) |
startTime | number | No | Start timestamp in milliseconds (optional, data from past 7 days) |
endTime | number | No | End timestamp in milliseconds (optional) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | string | Yes | Exchange name |
symbol | string | Yes | Coin symbol |
orders | array | Yes | Array of liquidation orders (max 200 per request) |
Examples
json{ "type": "coinglass-get-liquidation-orders", "payload": { "exchange": "example-exchange", "symbol": "ETH", "minLiquidationAmount": "1000000" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-get-liquidation-orders/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "exchange": "example-exchange", "symbol": "ETH", "minLiquidationAmount": "1000000" }}'
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.
