Get Large Orders History
Get historical large limit orders from the futures orderbook that have been completed. Returns significant orders meeting thresholds: BTC >= $1M, ETH >= $500K, Others >= $50K. Ideal for: historical whale activity analysis, large order patterns, market impact assessment, institutional trading history.
Catalog action Blockchain Data
Get historical large limit orders from the futures orderbook that have been completed. Returns significant orders meeting thresholds: BTC >= $1M, ETH >= $500K, Others >= $50K. Ideal for: historical whale activity analysis, large order patterns, market impact assessment, institutional trading history.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-get-large-orders-history |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, history, whales, futures, derivatives, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
symbol | string | No | Filter by trading pair (e.g., 'BTCUSDT', 'ETHUSDT'). If not provided, returns large orders history for all pairs. |
exchange | string | Yes | Exchange name to query (e.g., 'Binance', 'OKX'). Required by the Coinglass API. |
limit | number | No | Maximum number of results to return (default: 1000). |
startTime | number | No | Start timestamp in milliseconds (e.g., 1641522717000). |
endTime | number | No | End timestamp in milliseconds (e.g., 1641522717000). |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
orders | array | Yes | Array of historical large orders (completed). Thresholds: BTC >= $1M, ETH >= $500K, Others >= $50K |
Examples
json{ "type": "coinglass-get-large-orders-history", "payload": { "exchange": "example-exchange" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-get-large-orders-history/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "exchange": "example-exchange" }}'
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.
