# Account
# Querying Assets
GET /v1/contract/account/balance
Module | Type | Resource Isolation | Rate Limit |
---|---|---|---|
Account(ACCOUNT) | Query(QUERY) | Coin(COIN) | 1 |
# Parameters
NONE
# Response Parameters
Name | Type | Description |
---|---|---|
coin | String | Cryptocurrency |
totalAmount | BigDecimal | Total Amount |
balanceAmount | BigDecimal | Available Balance |
freezeAmount | BigDecimal | Freeze balance |
marginAmount | BigDecimal | Margin |
unRealizedAmount | BigDecimal | Unrealized Profit Or Loss |
entireUnRealizedAmount | BigDecimal | Unrealized profit and loss on full position |
# Request Example
GET /v1/contract/account/balance
# Response Example
{
"code": "200",
"message": "OK",
"timestamp": "1704799591872",
"data": {
"coin": "USDT",
"unRealizedAmount": "-56.387",
"entireUnRealizedAmount": "0",
"marginAmount": "15402.52466177",
"balanceAmount": "24811.65459246",
"freezeAmount": "0",
"totalAmount": "40214.17925423"
}
}