Skip to main content
GET
/
v3
/
exchanges
/
{id}
/
volume-chart
Exchange volume chart
curl --request GET \
  --url https://api.cryptorank.io/v3/exchanges/{id}/volume-chart \
  --header 'X-Api-Key: <api-key>'
{
  "points": [
    [
      "2026-05-13T00:00:00.000Z",
      "38400000000"
    ],
    [
      "2026-05-13T01:00:00.000Z",
      "38520000000"
    ]
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
number
required

Query Parameters

days
enum<number>
default:7

Time window in days. Bucket size is auto-selected: 1 → 10-minute, 7|14 → hourly, 30|90|180|365 → daily.

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

Response

200 - application/json
points
string[][]
required

Time-series of adjusted 24h trading volume in USD. Each entry is [bucketStartIsoUtc, volumeUsd]. bucketStartIsoUtc is the start of the bucket in UTC. volumeUsd is the last observed rolling 24h volume within the bucket.

Required array length: 2 elements
Example:
[
["2026-05-13T00:00:00.000Z", "38400000000"],
["2026-05-13T01:00:00.000Z", "38520000000"]
]