Retrieves the historical (time series) open-high-low-close for the specified exchange and pairs.
Note: This endpoint returns a max of:
- 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.
Response Data
Field | Type | Description |
---|---|---|
metadata |
| The metadata associated with the ohlcv data. |
metadata.columns |
| The name of the columns associated with the returned data e.g. |
metadata.startDate |
| The first date/time for which data is available. |
metadata.endDate |
| The last date/time for which data is available. |
data |
| |
data.[pair] |
| The ohlcv data corresponding to the |
data.[pair].timestamp |
| The timestamp associated with this record. |
data.[pair].open |
| The opening price of the market pair. |
data.[pair].high |
| The highest price of the market pair. |
data.[pair].low |
| The lowest price of the market pair. |
data.[pair].close |
| The closing price of the market pair. |
data.[pair].volume |
| The volume traded in within the time period. |