Get Wallet Asset Summary
GET
/open-api/v1/wallet/asset/summaryThis method allows you to get the specified wallet's asset summary, represented in its equivalent BTC & USD value. Please note that this equivalent value is provided for reference only and is based on our internal calculation.
API Key permission group : Enable Enquiry
Request
Wallet id
Current timestamp in millisecond
OpenAPI key string
Signature of the request
Request samples
Responses
response data, maybe null
total asset balance in BTC equivalent value under the specified walletID
total asset balance in USD equivalent value under the specified walletID
locked asset balance in BTC equivalent value
'000000' indicates success, while any others indicate failure.
When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.
{
"data": {
"walletIdStr": "1557971669384941569",
"totalAmountInBTC": "0.000005978220849196",
"totalAmountInUSD": "0.3898858805969329844000000000000000000000000",
"lockedAmountInBTC": null
},
"code": "000000",
"message": "Success"
}