Get Spot Aggregated CVD
Get historical CVD (Cumulative Volume Delta) data aggregated across exchanges for a specific coin. CVD measures the cumulative difference between buy and sell volume over time across multiple exchanges. Ideal for: market-wide trend confirmation, cross-exchange divergence, aggregated sentiment analysis.
Catalog action Blockchain Data
Get historical CVD (Cumulative Volume Delta) data aggregated across exchanges for a specific coin. CVD measures the cumulative difference between buy and sell volume over time across multiple exchanges. Ideal for: market-wide trend confirmation, cross-exchange divergence, aggregated sentiment analysis.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-spot-get-aggregated-cvd |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, spot, cvd, volume, delta, aggregated, history, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchangeList | string | Yes | Comma-separated exchange names (e.g., 'Binance,OKX,Bybit'). |
symbol | string | Yes | Coin symbol (e.g., 'BTC', 'ETH'). |
interval | string | Yes | Time interval (e.g., '1m', '5m', '15m', '30m', '1h', '4h', '12h', '1d'). |
limit | number | No | Number of data points to return (default: 100). |
startTime | number | No | Start timestamp in milliseconds. |
endTime | number | No | End timestamp in milliseconds. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchangeList | string | Yes | Comma-separated exchange names |
symbol | string | Yes | Coin symbol |
interval | string | Yes | Time interval |
dataPoints | array | Yes | Array of aggregated CVD (Cumulative Volume Delta) data points |
Examples
json{ "type": "coinglass-spot-get-aggregated-cvd", "payload": { "exchangeList": "example-exchangeList", "symbol": "ETH", "interval": "1m" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-spot-get-aggregated-cvd/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "exchangeList": "example-exchangeList", "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.
