Light Mode
Get Transfer Quotas
GET
/api/v1/accounts/transferable:::info[Description]
This endpoint returns the transferable balance of a specified account.
:::
Request
Query Params
currency
string
required
currency
Examples:
BTCETHUSDT
type
enum<string>
required
The account type:MAIN、TRADE、MARGIN、ISOLATED
Allowed values:
MAINTRADEMARGINISOLATEDOPTION
Example:
MAIN
tag
string
optional
Trading pair, required when the account type is ISOLATED; other types are not passed, e.g.: BTC-USDT
Default:
BTC-USDT
Examples:
ETH-USDTKCS-USDT
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
string
required
data
object
required
currency
string
required
Currency
balance
string
required
Total funds in an account.
available
string
required
Funds available to withdraw or trade.
holds
string
required
Funds on hold (not available for use).
transferable
string
required
Funds available to transfer.
Example
{
"code": "200000",
"data": {
"currency": "USDT",
"balance": "10.5",
"available": "10.5",
"holds": "0",
"transferable": "10.5"
}
}
Last modified: a month ago