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...'
key
data type
desc.
coin_id
int64
coin id
base_coin_id
int64
base id
coin_symbol
string
코인 심볼
wallet_address
string
지갑 주소
quantity
float64
코인량
today_acq_quantity
float64
외부 지갑을 통한 일일 획득량
today_cnsm_quantity
float64
외부 지갑을 통한 일일 소모량
today_acq_exchange_quantity
today_exchange_acq_quantity
float64
일일 획득 전환량
today_cnsm_exchange_quantity
today_exchange_cnsm_quantity
float64
일일 소모 전환량
reset_date
string
초기화 날짜
return
message
desc.
0
success
성공
20004
Invalid jwt token
유효하지 않은 액세스 토큰
34004
GetMeCoinList DB Scan Error
DB 스캔 에러
Last updated