Get Taker Buy/Sell Volume (Coin)
Retrieve aggregated historical taker buy/sell volume ratio for a coin across multiple trading pairs. Aggregates buy/sell pressure across all pairs for the specified cryptocurrency. Ideal for: overall market sentiment, coin-level buy/sell analysis, trading strategy signals.
Catalog action Blockchain Data
Retrieve aggregated historical taker buy/sell volume ratio for a coin across multiple trading pairs. Aggregates buy/sell pressure across all pairs for the specified cryptocurrency. Ideal for: overall market sentiment, coin-level buy/sell analysis, trading strategy signals.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-get-taker-buy-sell-coin |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, taker, volume, futures, sentiment, aggregated, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | string | Yes | Exchange name (e.g., Binance, OKX) |
symbol | string | Yes | Coin symbol (e.g., BTC, ETH) |
interval | string | Yes | Time interval: 1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 8h, 12h, 1d, 1w |
limit | number | No | Number of results (default: 1000, max: 4500) |
startTime | number | No | Start timestamp in seconds |
endTime | number | No | End timestamp in seconds |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | string | Yes | Exchange name |
symbol | string | Yes | Coin symbol |
interval | string | Yes | Time interval |
dataPoints | array | Yes | Array of aggregated taker buy/sell volume data points |
Examples
json{ "type": "coinglass-get-taker-buy-sell-coin", "payload": { "exchange": "example-exchange", "symbol": "ETH", "interval": "1m" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-get-taker-buy-sell-coin/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "exchange": "example-exchange", "symbol": "ETH", "interval": "1m" }}'
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.
