지갑 정보 조회
지갑 정보를 조회합니다.
GET
https://{dashboard-domain}/v1.0/db/me/wallets
Headers
Name
Type
Description
Authorization*
string
Bearer {{web-access-token}}
{
"return": 0,
"message": "success",
"value": [
{
"coin_id": 1,
"base_coin_id": 1,
"coin_symbol": "COT_2",
"wallet_address": "0x77b123eAFAe816A890ee869aC29d735F1c5E6012",
"quantity": 99999.99974,
"today_acq_quantity": 0,
"today_cnsm_quantity": -0.00013,
"today_acq_exchange_quantity": 0,
"today_cnsm_exchange_quantity": 0,
"reset_date": "2022-03-25T00:00:00Z"
},
{
"coin_id": 2,
"base_coin_id": 2,
"coin_symbol": "ONKLAY",
"wallet_address": "0x9cA2642bB6b076A35E7AdA0A7b09c1326361D769",
"quantity": 1469.99186,
"today_acq_quantity": 0,
"today_cnsm_quantity": -0.0045,
"today_acq_exchange_quantity": 105.006,
"today_cnsm_exchange_quantity": -105,
"reset_date": "2022-03-25T00:00:00Z"
}
]
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/me/wallets?au_id=1' \
--header 'Authorization: Bearer eyJhbGciOiJ...'
Last updated