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

Note

  • You can query the historical volume chart data of derivatives exchanges with this endpoint as well.
  • The data interval for this endpoint is fixed at daily.
  • The date range between from and to must be within 31 days.
  • Cache/Update Frequency: 5 minutes
  • Exclusive for Paid Plan Subscribers (Analyst, Lite, Pro and Enterprise)

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

from
number
default:1672531200
required

starting date in UNIX timestamp

Example:

"1672531200"

to
number
default:1675123200
required

ending date in UNIX timestamp

Example:

"1675123200"

Response

200 - application/json

Get exchange volume chart data

The response is of type number[][].