Get On-Chain Exchange Balance Chart
Get historical on-chain balance chart data for a coin across all exchanges. Returns time-series balance data with price correlation per exchange. Supports 1h to 1d intervals. Ideal for: exchange flow analysis, accumulation/distribution patterns, correlation analysis.
Catalog action Blockchain Data
Get historical on-chain balance chart data for a coin across all exchanges. Returns time-series balance data with price correlation per exchange. Supports 1h to 1d intervals. Ideal for: exchange flow analysis, accumulation/distribution patterns, correlation analysis.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-onchain-get-exchange-balance-chart |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, onchain, exchange, balance, chart, history, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Coin symbol to query (e.g., 'BTC', 'ETH'). Returns historical balance chart data across exchanges. |
interval | string | Yes | Time interval for data points. Supported values: 1h, 4h, 12h, 1d. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Coin symbol. |
interval | string | Yes | Time interval used. |
exchanges | array | Yes | List of exchange names included in the chart data |
dataPoints | array | Yes | Array of chart data points |
Examples
json{ "type": "coinglass-onchain-get-exchange-balance-chart", "payload": { "symbol": "ETH", "interval": "1h" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-onchain-get-exchange-balance-chart/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "symbol": "ETH", "interval": "1h" }}'
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.
