Get Large Open Orders
Get large open limit orders from the current futures orderbook. Returns significant orders meeting thresholds: BTC >= $1M, ETH >= $500K, Others >= $50K. Ideal for: whale watching, large order detection, market sentiment analysis, institutional activity tracking.
Catalog action Blockchain Data
Get large open limit orders from the current futures orderbook. Returns significant orders meeting thresholds: BTC >= $1M, ETH >= $500K, Others >= $50K. Ideal for: whale watching, large order detection, market sentiment analysis, institutional activity tracking.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-get-large-orders |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, 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 for all pairs. |
exchange | string | Yes | Exchange name to query (e.g., 'Binance', 'OKX'). Required by the Coinglass API. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
orders | array | Yes | Array of large open orders. Thresholds: BTC >= $1M, ETH >= $500K, Others >= $50K |
Examples
json{ "type": "coinglass-get-large-orders", "payload": { "exchange": "example-exchange" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-get-large-orders/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.
