App 포인트 별 유동량 History 조회(그래프)

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

Query Parameters

Name
Type
Description

app_id*

int64

app id

candle*

string

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

point_id*

int64

point id

page_size*

int64

page_offset*

int64

{
    "return": 0,
    "message": "success",
    "value": {
        "point_liquidity_count": 2,
        "point_liquiditys": [
            {
                "base_date": "2022-02-04T00:00:00Z",
                "base_date_number": 1643932800,
                "acq_quantity": 4400,
                "acq_count": 4,
                "cnsm_quantity": 0,
                "cnsm_count": 0,
                "acq_exchange_quantity": 0,
                "points_to_coins_count": 3,
                "cnsm_exchange_quantity": -300,
                "coins_to_points_count": 0
            },
            {
                "base_date": "2022-02-03T00:00:00Z",
                "base_date_number": 1643846400,
                "acq_quantity": 2000,
                "acq_count": 5,
                "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://20.194.125.150:51031/v1.0/db/app/point/history?app_id=1&point_id=1&candle=month&page_offset=0&page_size=5'

Last updated