시세 캔들 조회 (Days)
시세, 유동량을 "일"단위로 조회합니다.
GET
https://{dashboard-domain}/v1.0/db/coin/candle/days
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
. 비워서 요청시 가장 최근 캔들
converting_price_unit
string
종가 환산 화폐 단위 (생략 가능, KRW로 명시할 시 원화 환산 가격을 반환.)
{
"return": 0,
"message": "success",
"value": [
{
"market": "BTC-ONIT",
"candle_date_time_utc": "2022-01-12T00:00:00",
"candle_date_time_kst": "2022-01-12T09:00:00",
"opening_price": 0.00000629,
"high_price": 0.00000715,
"low_price": 0.00000588,
"trade_price": 0.00000635,
"timestamp": 1642031997026,
"candle_acc_trade_price": 377.99962462,
"candle_acc_trade_volume": 58386426.32565145,
"prev_closing_price": 0.00000629,
"change_price": 6e-8,
"change_rate": 0.0095389507,
"converted_trade_price": 0
},
{
"market": "BTC-ONIT",
"candle_date_time_utc": "2022-01-11T00:00:00",
"candle_date_time_kst": "2022-01-11T09:00:00",
"opening_price": 0.00000657,
"high_price": 0.00000685,
"low_price": 0.00000593,
"trade_price": 0.00000629,
"timestamp": 1641945595124,
"candle_acc_trade_price": 263.90303114,
"candle_acc_trade_volume": 41686738.10520961,
"prev_closing_price": 0.00000657,
"change_price": -2.8e-7,
"change_rate": -0.0426179604,
"converted_trade_price": 0
},
{
"market": "BTC-ONIT",
"candle_date_time_utc": "2022-01-10T00:00:00",
"candle_date_time_kst": "2022-01-10T09:00:00",
"opening_price": 0.00000629,
"high_price": 0.00000694,
"low_price": 0.00000607,
"trade_price": 0.00000657,
"timestamp": 1641859181065,
"candle_acc_trade_price": 543.55802663,
"candle_acc_trade_volume": 82487435.57057753,
"prev_closing_price": 0.00000629,
"change_price": 2.8e-7,
"change_rate": 0.0445151033,
"converted_trade_price": 0
}
]
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/coin/candle/days?coin_symbol=BTC-ONIT&count=3&to=2022-01-12T04:29:00Z'
Last updated