코인 별 유동량 History 조회(그래프)

GET https://{dashboard-domain}/v1.0/db/app/coin/history

Query Parameters

Name
Type
Description

coin_id*

int64

코인 ID

candle*

string

"hour", "day", "week", "month"

page_size*

int64

page_offset*

int64

{
    "return": 0,
    "message": "success",
    "value": {
        "coin_liquidity_count": 2,
        "coin_liquiditys": [
            {
                "base_date": "2022-02-04T00:00:00Z",
                "base_date_number": 1643932800,
                "acq_quantity": 0,
                "acq_count": 0,
                "cnsm_quantity": 0,
                "cnsm_count": 0,
                "acq_exchange_quantity": 300,
                "points_to_coins_count": 3,
                "cnsm_exchange_quantity": 0,
                "coins_to_points_count": 0
            },
            {
                "base_date": "2022-02-03T00:00:00Z",
                "base_date_number": 1643846400,
                "acq_quantity": 0,
                "acq_count": 0,
                "cnsm_quantity": 0,
                "cnsm_count": 0,
                "acq_exchange_quantity": 0,
                "points_to_coins_count": 0,
                "cnsm_exchange_quantity": 0,
                "coins_to_points_count": 0
            }
        ]
    }
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/app/coin/history?coin_id=2&candle=day&page_offset=0&page_size=5'

Last updated