Get User Wallet Balance
Get the user's wallet balance for all currencies
(Authentication type:NONE, See Interface Permission)
Request Format
GET https://api-cloud.bitmart.com/spot/v1/wallet
Request Limit
Request Parameter
None
Request example
https://api-cloud.bitmart.com/spot/v1/wallet
Response Data
Field | Type | Description |
---|---|---|
id | string | Cryptocurrency abbreviation |
name | string | Full name |
available | string | Available balance |
frozen | string | Frozen balance |
Instruction
Example of returned data format
{
"code": 1000,
"trace":"886fb6ae-456b-4654-b4e0-d681ac05cea1",
"message": "OK",
"data": {
"wallet": [
{
"id": "BTC",
"available": "10.000000",
"name": "Bitcoin",
"frozen": "10.000000",
},
...
]
}
}