Currency historical OHLC
Description
Historical OHLCV time series for a single currency. Each bucket carries open/high/low/avg/close USD prices, volume (24-hour USD trading volume reported at bucket close), circulatingSupply at bucket close, plus percent changes within and across buckets. Buckets are aligned to the selected interval (day, week, month). from is required; to defaults to now.
Responses are capped at limit buckets. If data.length equals limit, more data may exist — shift from to the last returned bucket’s date plus one interval and request again.
Pricing
- 1 credit base + 1 credit per 100 buckets returned over the first 100.
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
Path Parameters
Numeric coin id.
1
Query Parameters
Aggregation interval.
day, week, month Range start (ISO 8601 or Unix timestamp in seconds/milliseconds).
"2025-01-01"
Range end (ISO 8601 or Unix timestamp in seconds/milliseconds). Defaults to now.
Maximum number of candles returned. For wider windows shift from and re-query.
1 <= x <= 5000Response
Bucket start, Unix milliseconds.
1715000000000
USD price at bucket open.
"65000.5"
Highest USD price during the bucket.
"65500.123"
Lowest USD price during the bucket.
"64500.4"
Average USD price across the bucket.
"65100.21"
USD price at bucket close.
"65200.7"
24-hour trading volume in USD reported at bucket close.
"32400000000"
Circulating supply at bucket close.
"19500000"
Percent price change within the bucket: (close - open) / open * 100.
0.31
Percent change of volume vs the previous bucket. Null when no previous bucket exists.
0.42
Percent change of circulatingSupply vs the previous bucket. Null when no previous bucket exists.
0.001