GET
/
exchanges
/
{id}
/
volume_chart
Exchange Volume Chart by ID
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/exchanges/{id}/volume_chart \
  --header 'x-cg-pro-api-key: <api-key>'
[
  [
    1711792200000,
    "306800.0517941023777005"
  ],
  [
    1711795800000,
    "302561.8185582217570913"
  ],
  [
    1711799400000,
    "298240.5127048246776691"
  ]
]

Note

  • You can use this endpoint to query the historical volume chart data of derivatives exchanges as well.
  • The exchange volume in the response is provided in BTC. To convert it to other currencies, please use /exchange_rates endpoint.
  • Data granularity is automatic (cannot be adjusted):
    • 1 day = 10-minutely
    • 7, 14 days = hourly
    • 30 days & above = daily
  • Cache / Update Frequency: every 60 seconds for all the API plans.

Authorizations

x-cg-pro-api-key
string
header
required

Path Parameters

id
string
default:binance
required

exchange ID or derivative exchange ID *refers to /exchanges/list or /derivatives/exchanges/list.

Query Parameters

days
enum<string>
required

data up to number of days ago

Available options:
1,
7,
14,
30,
90,
180,
365

Response

200 - application/json

Get exchange volume chart data

The response is of type number[][].