시세 캔들 조회 (Minutes)
시세, 유동량을 "분"단위로 조회합니다.
GET
https://{dashboard-domain}/v1.0/db/coin/candle/minutes
Query Parameters
Name
Type
Description
coin_symbol*
string
코인 심볼 (ex. BTC-ONIT)
count*
string
캔들 개수(최대 200개까지 요청 가능)
to*
string
마지막 캔들 시각 (exclusive). 포맷 : yyyy-MM-dd'T'HH:mm:ss'Z'
or yyyy-MM-dd HH:mm:ss
. 비워서 요청시 가장 최근 캔들
unit*
string
분 단위. 가능한 값 : 1, 3, 5, 15, 10, 30, 60, 240
{
"return": 0,
"message": "success",
"value": [
{
"market": "BTC-ONIT",
"candle_date_time_utc": "2022-01-12T04:00:00",
"candle_date_time_kst": "2022-01-12T13:00:00",
"opening_price": 0.00000612,
"high_price": 0.00000614,
"low_price": 0.00000608,
"trade_price": 0.00000613,
"timestamp": 1641963583788,
"candle_acc_trade_price": 1.93819402,
"candle_acc_trade_volume": 317450.75856191,
"unit": 60
},
{
"market": "BTC-ONIT",
"candle_date_time_utc": "2022-01-12T03:00:00",
"candle_date_time_kst": "2022-01-12T12:00:00",
"opening_price": 0.00000604,
"high_price": 0.00000615,
"low_price": 0.00000603,
"trade_price": 0.00000611,
"timestamp": 1641959995610,
"candle_acc_trade_price": 3.18835596,
"candle_acc_trade_volume": 523906.49589038,
"unit": 60
},
{
"market": "BTC-ONIT",
"candle_date_time_utc": "2022-01-12T02:00:00",
"candle_date_time_kst": "2022-01-12T11:00:00",
"opening_price": 0.00000605,
"high_price": 0.00000611,
"low_price": 0.00000596,
"trade_price": 0.00000602,
"timestamp": 1641956364370,
"candle_acc_trade_price": 13.24808551,
"candle_acc_trade_volume": 2207592.17862526,
"unit": 60
}
]
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/coin/candle/minutes?coin_symbol=BTC-ONIT&unit=60&count=3&to=2022-01-12T04:29:00Z'
Last updated