Get Options Exchange Volume History
Get historical options trading volume data across exchanges over time. Returns timestamped volume values for each exchange with corresponding price data. Ideal for: volume trend analysis, exchange activity comparison, liquidity assessment, trading flow analysis.
Catalog action Blockchain Data
Get historical options trading volume data across exchanges over time. Returns timestamped volume values for each exchange with corresponding price data. Ideal for: volume trend analysis, exchange activity comparison, liquidity assessment, trading flow analysis.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-options-get-exchange-vol-history |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, options, volume, history, exchange, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Coin symbol (e.g., 'BTC', 'ETH') |
range | string | Yes | Time range for historical data (e.g., 'all', '1y', '6m', '3m', '1m') |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Coin symbol |
range | string | Yes | Time range used |
exchanges | array | Yes | List of exchanges with data |
dataPoints | array | Yes | Array of historical data points |
Examples
json{ "type": "coinglass-options-get-exchange-vol-history", "payload": { "symbol": "ETH", "range": "all" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-options-get-exchange-vol-history/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "symbol": "ETH", "range": "all" }}'
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.
