Exchanges

๐Ÿ’ผ Exchange Volume Chart within Time Range by ID

This endpoint allows you to query the historical volume chart data in BTC by specifying date range in UNIX based on exchange's ID

get/exchanges/{id}/volume_chart/range

Path parameters

idstring required

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

Query parameters

fromnumber required
Example:1672531200

starting date in UNIX timestamp

tonumber required
Example:1675123200

ending date in UNIX timestamp

Response

Get exchange volume chart data

Example response

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

Changes