๐Ÿ“˜

Support Range

The seconds candle API provides candles within the last 3 months from the time of request. If this API returns an empty list or does not return the requested count, check the to parameter.

Request Parameters

FieldDescriptionType
marketMarket ID (ex. KRW-BTC)String
toEnd timestamp of the last candle (exclusive).
Accepts ISO 8601 format: yyyy-MM-dd'T'HH:mm:ss'Z' or yyyy-MM-dd HH:mm:ss.
Defaults to UTC, but a timezone offset can be specified (e.g. 2023-01-01T00:00:00+09:00 for KST).
If omitted, the latest available candle will be returned.
String
countCount of candles (LIMIT : 200)Integer

Response

๐Ÿšง

Candles are generated only when trades occur during the corresponding time interval.

  • For example, a 1-second candle with candle_date_time = 2024-08-31T22:25:00 represents trades that occurred between 2024-08-31T22:25:00 (inclusive) and 2024-08-31T22:25:01 (exclusive).
  • If no trades occurred during that time, the 2024-08-31T22:25:00 candle will not be generated and will not appear in the response.
FieldDescriptionType
marketMarket IDString
candle_date_time_utcTimestamp representing the start of the candle (in UTC)
Format: yyyy-MM-dd'T'HH:mm:ss
String
candle_date_time_kstTimestamp representing the start of the candle (in 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 Long
candle_acc_trade_priceCumulative trade price Double
candle_acc_trade_volumeCumulative trade volume Double
Language