시세 캔들 조회 (Months)

시세, 유동량을 "월"단위로 조회합니다.

GET https://{dashboard-domain}/v1.0/db/coin/candle/months

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-01T00:00:00",
            "candle_date_time_kst": "2022-01-01T09:00:00",
            "opening_price": 0.00000441,
            "high_price": 0.00000715,
            "low_price": 0.00000429,
            "trade_price": 0.00000641,
            "timestamp": 1642043106840,
            "candle_acc_trade_price": 3045.18127902,
            "candle_acc_trade_volume": 524401878.5530791,
            "first_day_of_period": "2022-01-01"
        },
        {
            "market": "BTC-ONIT",
            "candle_date_time_utc": "2021-12-01T00:00:00",
            "candle_date_time_kst": "2021-12-01T09:00:00",
            "opening_price": 0.00000376,
            "high_price": 0.00000872,
            "low_price": 0.0000029,
            "trade_price": 0.00000442,
            "timestamp": 1640995199992,
            "candle_acc_trade_price": 13077.97323586,
            "candle_acc_trade_volume": 2522112269.148095,
            "first_day_of_period": "2021-12-01"
        },
        {
            "market": "BTC-ONIT",
            "candle_date_time_utc": "2021-11-01T00:00:00",
            "candle_date_time_kst": "2021-11-01T09:00:00",
            "opening_price": 0.00000198,
            "high_price": 0.00000729,
            "low_price": 0.00000194,
            "trade_price": 0.00000377,
            "timestamp": 1638316793349,
            "candle_acc_trade_price": 12232.08749673,
            "candle_acc_trade_volume": 3011510279.9163675,
            "first_day_of_period": "2021-11-01"
        }
    ]
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/coin/candle/months?coin_symbol=BTC-ONIT&count=3&to=2022-01-12T04:29:00Z'

Last updated