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,
"coin_symbol": "COT_2",
"wallet_address": "0x2298f0Aeee5ba773753E50046a74D42b9bb5247c",
"quantity": 5,
"today_acq_quantity": 2,
"today_cnsm_quantity": -1,
"reset_date": "2022-01-27T00:00:00Z"
}
]
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/me/coin/list' \
--header 'Authorization: Bearer eyJhbGciOiJ...'
Last updated