get https://web3api.io/api/v2/market/spot/ohlcv//historical
Retrieves the historical (time series) open-high-low-close for the specified pair.
Time Range Limit
The maximum time range (difference between startDate and endDate) is:
- 12 months of daily data
- 30 days of hourly data
- 24 hours of minutely data
In order to get more than the maximum allowed, you can use the
startDate
&endDate
parameters to move the time frame window to get the next n days/hours/minutes of data.
Not specifying startDate and endDate
If the startDate and endDate query parameters are not provided, the API will return the previous 12 months of daily data.
Response Data
Field | Type | Description |
---|---|---|
metadata | object | The metadata associated with the ohlcv data. |
data | object | The ohlcv data corresponding to the columns fields. |
columns | array | The name of the columns associated with the returned data e.g. [ timestamp, open, ...] . |
timestamp | string | The timestamp associated with this record. |
open | number | The opening price of the market pair. |
high | number | The highest price of the market pair. |
low | number | The lowest price of the market pair. |
close | number | The closing price of the market pair. |
volume | number |