Get Exchange Volume Chart by Date Range logo

Catalog action Blockchain Data

Retrieves historical trading volume for an exchange within a specific date range (max 31 days, Pro plan). Returns [timestamp, volume_in_btc] pairs with daily granularity for spot and derivatives exchanges. Ideal for: analyzing volume during events, custom period reports, investigating volume patterns.

At a Glance

FieldValue
Action IDcoingecko-get-exchange-volume-chart-range
CategoryBlockchain Data
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagscoingecko, exchange, volume, chart, historical, range, read

Payload Schema

FieldTypeRequiredDescription
exchangeIdstringYesExchange ID (e.g., 'binance', 'coinbase-exchange'). Also supports derivatives exchange IDs. Use /exchanges/list to find IDs.
fromnumberYesStart date as Unix timestamp (seconds).
tonumberYesEnd date as Unix timestamp (seconds). Must be within 31 days of start date.

Result Schema

FieldTypeRequiredDescription
exchangeIdstringYesExchange ID.
volumesarrayYesArray of daily volume data points

Examples

json
{ "type": "coingecko-get-exchange-volume-chart-range", "payload": { "exchangeId": "example-exchangeId", "from": 1, "to": 1 }, "children": []}

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.

Ask a question... ⌘I