Request Parameters

Field NameDescriptionType
marketMarket code (ex. KRW-BTC)String
toTimestamp of last candle (exclusive).
In ISO8061 (yyyy-MM-dd'T'HH:mm:ss'Z' or yyyy-MM-dd HH:mm:ss). By default, the time is based on UTC, but it is possible to request it in KST time, such as 2023-01-01T00:00:00+09:00.
If left blank, the most recent candle will be requested.
String
countNumber of candles to request (up to a maximum of 200)Integer
convertingPriceUnitThe currency unit for converting the closing price
(optional; if omitted, the converted price will be returned in KRW).
String

Response

Field NameDescriptionType
marketMarket IDString
candle_date_time_utcCandle time (UTC)
Format yyyy-MM-dd'T'HH:mm:ss
String
candle_date_time_kstCandle time (KST)
Format: yyyy-MM-dd'T'HH:mm:ss
String
opening_priceOpen PriceDouble
high_priceHigh PriceDouble
low_priceLow PriceDouble
trade_priceClose PriceDouble
timestampLast trade timestamp for the candleLong
candle_acc_trade_priceAccumulated trade quantity for the candleDouble
candle_acc_trade_volumeAccumulated trade quantity for the candleDouble
prev_closing_pricePrevious Day Close Price (UTC+0)Double
change_priceChange price compared to the previous day’s closing priceDouble
change_rateChange price rate compared to the previous day’s closing priceDouble
converted_trade_priceConverted Close price by convertingPriceUnit (If not digital asset market, return null value)Double

When requesting ‘day candles’ using the convertingPriceUnit parameter in other markets(ex. BTC, ETH) than the KRW market, the closing price parameter is converted to the specified parameter. It is added to the converted_trade_price field.

Currently the conversion of KRW is provided, additional features may be provided in the near future.

Language