v1

latestOpenAPI 3.1.02026-07-26420360.1 KB

분(Minute) 캔들 조회

지정한 거래 페어의 분 단위 캔들 데이터를 조회합니다.

응답 데이터는 시간 내림차순(최신 → 과거)으로 정렬됩니다.

get/candles/minutes/{unit}

Path parameters

unit1 | 3 | 5 | 10 | 15 | 30 | 60 | 240 required

캔들 분 단위

Query parameters

marketstring required

거래 대상 페어의 고유 심볼

예시) KRW-BTC

tostring

조회 기준 시각(KST). 해당 시각의 캔들은 제외되며, 미입력 시 가장 최근 캔들 기준으로 조회합니다.

형식) yyyy-MM-dd HH:mm:ss 또는 yyyy-MM-ddTHH:mm:ss

countinteger

조회할 캔들 개수(max 200)

Response

200

marketstring

거래 대상 페어의 고유 심볼

예시) KRW-BTC

candle_date_time_utcstring date-time

캔들 기준 시각(UTC)

candle_date_time_kststring date-time

캔들 기준 시각(KST)

opening_pricenumber double

시가

high_pricenumber double

고가

low_pricenumber double

저가

trade_pricenumber double

종가

timestampstring

캔들 기간 중 발생한 마지막 거래 시각(Unix timestamp, Unit: ms)

candle_acc_trade_pricenumber double

캔들 기간 중 누적 거래 금액

candle_acc_trade_volumenumber double

캔들 기간 중 누적 거래량

unitinteger

분 단위(유닛)

Example response

[
  {
    "market": "KRW-BTC",
    "candle_date_time_utc": "2018-04-18T10:16:00",
    "candle_date_time_kst": "2018-04-18T19:16:00",
    "opening_price": 8615000,
    "high_price": 8618000,
    "low_price": 8611000,
    "trade_price": 8616000,
    "candle_acc_trade_price": 60018891.90054,
    "candle_acc_trade_volume": 6.96780929,
    "unit": 1
  }
]