Returns Open/High/Low/Close values with volume and market capitalization for any date range. If the end
date is the current day, data can change with every request until actual close of the day at 23:59:59”
Available on the following API plans:
Maximum time range of data available to fetch depending on the plan:
Plan | Time range |
---|---|
Free | Last 24 hours |
Starter | Last 30 days |
Pro | Last 90 days |
Business | Last 365 days |
Enterprise | No limits |
The default interval of returned data for OHLCV is 24 hours:
[
{
"time_open": "2020-01-01T00:00:00Z",
"time_close": "2020-01-01T23:59:59Z",
"open": ...,
"high": ...,
"low": ...,
"close": ...,
"volume": ...,
"market_cap": ...
}
...
]
However, depending on your API plan, you can set a smaller interval by using the query parameter interval
:
Plan | interval parameter value |
---|---|
Free | 24h |
Starter | 24h |
Pro | 24h |
Business | 1h , 6h , 12h , 24h |
Enterprise | 5m , 15m , 30m , 1h , 6h , 12h , 24h |
Update interval: Every 5 minute.
"btc-bitcoin"
start point for historical data
2018-02-15T05:15:00Z
2018-02-15
1518671700
end point for ohlcv (max 1 year)
2018-02-15T05:15:00Z
2018-02-15
1518671700
If not provided calculated by the limit parameter
limit of result rows (max 366
)
returned OHLCV point interval (available values: 5m
, 15m
, 30m
, 1h
, 6h
, 12h
, 24h
)
returned data quote (available values: usd
btc
)
successful operation
The response is of type object[]
.