시세 캔들 조회 (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'
key
data type
desc.
market
string
마켓명
candle_date_time_utc
string
캔들 기준 시각(UTC 기준)
candle_date_time_kst
string
캔들 기준 시각(KST 기준)
opening_price
float64
시가
high_price
float64
고가
low_price
float64
저가
trade_price
float64
종가
timestamp
int64
마지막 틱이 저장된 시각
candle_acc_trade_price
float64
누적 거래 금액
candle_acc_trade_volume
float64
누적 거래량
first_day_of_period
string
캔들 기간의 가장 첫 날
return
message
desc.
0
success
성공
12001
Empty coin symbol
코인 심볼이 비어있음
12004
Empty Count
Count가 비어있음
12005
Empty To
To가 비어있음
13004
Upbit Candle Weeks API Error
업비트 CandleWeeks 조회 API 에러
Last updated