OHLC

Historical OHLC for last 3 months for each symbol, startTime, endTime

Retrieve Historical OHLC Data

get
/v2/historical

Retrieve historical OHLC (Open, High, Low, Close) data to construct a historical trend view. Use startTime and endTime to set the date and time range for the data pull in the request. The response will include a respective number of JSON objects, each representing a 1-minute bar. Data is available up to the last 3 months.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
symbolstringRequired

Trade pair

startTimeinteger · int64Optional

Epoch time for the start of the date/time range

endTimeinteger · int64Optional

Epoch time for the end of the date/time range

Responses
chevron-right
200

A list of historical OHLC data

application/json
symbolstringRequired

Trade pair

Example: BTC-USD
itemDateTimeinteger · int64Required

Epoch time of the OHLC data

Example: 171995040000
dateinteger · int64Required

Epoch time of the date

Example: 1719878400000
highstringRequired

Highest price in the time period

Example: 61899.380566
lowstringRequired

Lowest price in the time period

Example: 61813.724947
closestringRequired

Closing price in the time period

Example: 61871.36912262
openstringRequired

Opening price in the time period

Example: 61804.3485625
get
/v2/historical

Last updated