Exchanges

Exchange Volume Chart by ID

This endpoint allows you to query the historical volume chart data with time in UNIX and trading volume data in BTC based on exchange's ID

get/exchanges/{id}/volume_chart

Path parameters

idstring required

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

Query parameters

days'1' | '7' | '14' | '30' | '90' | '180' | '365' required

data up to number of days ago

Response

Get exchange volume chart data

Example response

[
  [
    1711792200000,
    "306800.0517941023777005"
  ],
  [
    1711795800000,
    "302561.8185582217570913"
  ],
  [
    1711799400000,
    "298240.5127048246776691"
  ]
]

Changes