Get Currencies
Gets the currency of the asset for withdrawal
(Authentication type:None, See Interface Permission)
Request Format
GET https://api-cloud.bitmart.com/account/v1/currencies
Request Limit
Request Parameter
None
Request example
curl https://api-cloud.bitmart.com/account/v1/currencies
Response Data
Field | Type | Description |
---|---|---|
currency | string | Token symbol, e.g., 'BTC' |
name | string | Token name, e.g., 'Bitcoin' |
withdraw_enabled | boolean | Availability to withdraw, true - available; false - not available |
deposit_enabled | boolean | Availability to deposit, true - available; false - not available |
Instruction
If the returned response does not contain the currency you need, the currency may have been removed.
There are multiple USDT currencies. Note that:
currency
= USDT
default is OMNI;
currency
= USDT-TRC20
is TRC20;
currency
= USDT-ERC20
is ERC20;
Response Data
{
"code": 1000,
"trace":"886fb6ae-456b-4654-b4e0-d681ac05cea1",
"message": "OK",
"data": {
"currencies": [
{
"currency": "BTC",
"name": "Bitcoin",
"withdraw_enabled": true,
"deposit_enabled": true
},
{
"currency": "ETH",
"name": "Ethereum",
"withdraw_enabled": true,
"deposit_enabled": true
},
{
"currency":"USDT",
"name":"Tether USD",
"withdraw_enabled":true,
"deposit_enabled":true
},
{
"currency":"USDT-ERC20",
"name":"USDT-ERC20",
"withdraw_enabled":true,
"deposit_enabled":true
},
]
}
}