App 별 총/금일 누적 코인 리스트 조회

GET https://{dashboard-domain}/v1.0/db/me/coin/list

Headers

Name
Type
Description

Authorization*

string

Bearer {{web-access-token}}

{
    "return": 0,
    "message": "success",
    "value": [
        {
            "coin_id": 1,
            "base_coin_id": 0,
            "coin_symbol": "ONIT",
            "wallet_address": "",
            "quantity": 0,
            "today_acq_quantity": 0,
            "today_cnsm_quantity": 0,
            "today_exchange_acq_quantity": 0,
            "today_exchange_cnsm_quantity": 0,
            "reset_date": "2024-07-12T00:00:00Z"
        },
        {
            "coin_id": 2,
            "base_coin_id": 0,
            "coin_symbol": "NEWTON",
            "wallet_address": "",
            "quantity": 0,
            "today_acq_quantity": 0,
            "today_cnsm_quantity": 0,
            "today_exchange_acq_quantity": 277,
            "today_exchange_cnsm_quantity": 0,
            "reset_date": "2024-07-12T00:00:00Z"
        },
        {
            "coin_id": 4,
            "base_coin_id": 0,
            "coin_symbol": "ETH",
            "wallet_address": "",
            "quantity": 0,
            "today_acq_quantity": 1,
            "today_cnsm_quantity": 0,
            "today_exchange_acq_quantity": 0,
            "today_exchange_cnsm_quantity": 0,
            "reset_date": "2023-06-16T00:00:00Z"
        },
        {
            "coin_id": 5,
            "base_coin_id": 0,
            "coin_symbol": "MATIC",
            "wallet_address": "",
            "quantity": 0,
            "today_acq_quantity": 0,
            "today_cnsm_quantity": -0.45908,
            "today_exchange_acq_quantity": 0,
            "today_exchange_cnsm_quantity": 0,
            "reset_date": "2023-03-07T00:00:00Z"
        },
        {
            "coin_id": 6,
            "base_coin_id": 0,
            "coin_symbol": "MATIC-ERC20",
            "wallet_address": "",
            "quantity": 0,
            "today_acq_quantity": 0,
            "today_cnsm_quantity": 0,
            "today_exchange_acq_quantity": 0,
            "today_exchange_cnsm_quantity": 0,
            "reset_date": "2023-02-13T00:00:00Z"
        },
        {
            "coin_id": 7,
            "base_coin_id": 0,
            "coin_symbol": "SUI",
            "wallet_address": "",
            "quantity": 0,
            "today_acq_quantity": 0,
            "today_cnsm_quantity": 0,
            "today_exchange_acq_quantity": 0,
            "today_exchange_cnsm_quantity": -277,
            "reset_date": "2024-07-12T00:00:00Z"
        },
        {
            "coin_id": 8,
            "base_coin_id": 0,
            "coin_symbol": "ITI",
            "wallet_address": "",
            "quantity": 0,
            "today_acq_quantity": 0,
            "today_cnsm_quantity": 0,
            "today_exchange_acq_quantity": 0,
            "today_exchange_cnsm_quantity": 0,
            "reset_date": "2023-07-24T00:00:00Z"
        },
        {
            "coin_id": 10,
            "base_coin_id": 0,
            "coin_symbol": "HUBBLE",
            "wallet_address": "",
            "quantity": 0,
            "today_acq_quantity": 0,
            "today_cnsm_quantity": 0,
            "today_exchange_acq_quantity": 831,
            "today_exchange_cnsm_quantity": 0,
            "reset_date": "2023-08-29T00:00:00Z"
        }
    ]
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/me/coin/list' \
--header 'Authorization: Bearer eyJhbGciOiJ...'

Last updated