시세 캔들 조회 (Weeks)
시세, 유동량을 "주"단위로 조회합니다.
GET
https://{dashboard-domain}/v1.0/db/coin/candle/weeks
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
. 비워서 요청시 가장 최근 캔들
{
"return": 0,
"message": "success",
"value": [
{
"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.00000715,
"low_price": 0.00000588,
"trade_price": 0.00000642,
"timestamp": 1642043056349,
"candle_acc_trade_price": 1287.39480992,
"candle_acc_trade_volume": 198850493.09747958,
"first_day_of_period": "2022-01-10"
},
{
"market": "BTC-ONIT",
"candle_date_time_utc": "2022-01-03T00:00:00",
"candle_date_time_kst": "2022-01-03T09:00:00",
"opening_price": 0.00000473,
"high_price": 0.00000646,
"low_price": 0.00000451,
"trade_price": 0.00000629,
"timestamp": 1641772771963,
"candle_acc_trade_price": 1580.81886792,
"candle_acc_trade_volume": 287335260.4086428,
"first_day_of_period": "2022-01-03"
},
{
"market": "BTC-ONIT",
"candle_date_time_utc": "2021-12-27T00:00:00",
"candle_date_time_kst": "2021-12-27T09:00:00",
"opening_price": 0.00000443,
"high_price": 0.00000494,
"low_price": 0.00000413,
"trade_price": 0.00000473,
"timestamp": 1641167980046,
"candle_acc_trade_price": 972.29997176,
"candle_acc_trade_volume": 219554550.1534774,
"first_day_of_period": "2021-12-27"
}
]
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/coin/candle/weeks?coin_symbol=BTC-ONIT&count=3&to=2022-01-12T04:29:00Z'
Last updated