Get Exchange Volume Chart logo

Catalog action Blockchain Data

Retrieves historical trading volume chart data for an exchange over a specified number of days. Returns [timestamp, volume_in_btc] pairs with auto-adjusted granularity (10m/hourly/daily). Ideal for: tracking exchange volume trends, comparing exchange activity, building analytics dashboards.

At a Glance

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

Payload Schema

FieldTypeRequiredDescription
exchangeIdstringYesExchange ID (e.g., 'binance', 'coinbase-exchange'). Also supports derivatives exchange IDs. Use /exchanges/list to find IDs.
daysnumberYesNumber of days of data to retrieve. Allowed values: 1, 7, 14, 30, 90, 180, 365.

Result Schema

FieldTypeRequiredDescription
exchangeIdstringYesExchange ID.
volumesarrayYesArray of volume data points

Examples

json
{ "type": "coingecko-get-exchange-volume-chart", "payload": { "exchangeId": "example-exchangeId", "days": 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