List of Total Assets
Address: /openApi/contract/walletList
Received Parameters
Required
Submission Method: get
Submission Parameters
Parameter Name |
Required |
Type |
Example |
Description |
symbol |
No |
string |
EOS-USDT |
Trading Pair |
Return Parameters
Parameter Name |
Required |
Mandatory |
Example |
Description |
errno |
Yes |
int |
0 |
Return Status Code |
errmsg |
Yes |
string |
Success |
Return message |
result |
Yes |
object |
See example |
Return data |
result Parameters
Parameter Name |
Required |
Type |
Example |
Description |
symbol |
Yes |
string |
ETH-USDT |
Trading Pair |
avail |
Yes |
string |
20 |
Available USDT |
hold |
yes |
string |
1 |
Position Margin |
frozen |
Yes |
string |
0 |
Margin frozen for delegation |
Return Example
JSON{
"errno": 0,
"errmsg": "success",
"result": [
{
"symbol": "ETH-USDT", //Trading pair
"avail": "20", //Available USDT
"hold": "1", //Position Margin
"frozen": "0" //Delegated frozen margin
}
]
}