# 8、Query Balance
Request Method
- GET
Request URL
/api/v3/wallet/query/balance
Request Header
Content-Type: application/json;charset=utf-8
Request Header Parameters
| Parameter Name | Type | Description | Example Value |
|---|---|---|---|
| access_key | String | Merchant backend access key | pFqV75X3 |
| timestamp | int64 | 13-digit timestamp (milliseconds) | 1679724896223 |
| nonce | String | Random string (UUID V4) | 794c26b0-d33c-4394-b2bb-c485eca16d9e |
| sign | String | Signature generated using a secret key | kAXyh+eerqrefyaF8dyFB0M4FVo= |
Response Type
Header: {
"Content-Type": "application/json;charset=utf-8"
}
Response Example
{
"code": "200",
"success": true,
"msg": "成功",
"msgEn": "SUCCESS",
"data": [
{
"accountStatusId": 4,
"accountBalance": "346.525",
"accountFreezeAmount": "0",
"accountWaitSettledAmount": "0",
"chainType": "ETH",
"tokenType": "USDT",
"AccountStatus": "InAndOut"
},
{
"accountStatusId": 4,
"accountBalance": "479.938888",
"accountFreezeAmount": "0",
"accountWaitSettledAmount": "0",
"chainType": "TRON",
"tokenType": "USDT",
"AccountStatus": "InAndOut"
}
]
}
Response Parameters Description
| Parameter Name | Type | Description |
|---|---|---|
| accountStatusId | int64 | Account status ID |
| accountBalance | String | Available balance |
| accountFreezeAmount | String | Frozen amount |
| accountWaitSettledAmount | String | Amount waiting for settlement |
| chainType | String | Blockchain type |
| tokenType | String | Token type |
| AccountStatus | String | Account status |