Get Currency List
Get a list of all cryptocurrencies on the platform
(Authentication type:NONE, See Interface Permission)
Request Format
GET https://api-cloud.bitmart.com/spot/v1/currencies
Request Limit
Request Parameter
None
Request example
curl https://api-cloud.bitmart.com/spot/v1/currencies
Response Data
Field | Type | Description |
---|---|---|
id | String | Currency abbreviation, such as BTC |
name | String | Currency full name, such as Bitcoin |
withdraw_enabled | Boolean | Whether this currency can be withdrawn on the platform, true-can; false-no |
deposit_enabled | Boolean | Whether this currency can be deposited on the platform, true-can; false-not |
Instruction
If the currency you need is not included in the returned response, the currency may have been delisted.
Example of returned data format
{
"code": 1000,
"trace":"886fb6ae-456b-4654-b4e0-d681ac05cea1",
"message": "OK",
"data": {
"currencies": [
{
"id": "BTC",
"name": "Bitcoin",
"withdraw_enabled": true,
"deposit_enabled": true
},
{
"id": "ETH",
"name": "Ethereum",
"withdraw_enabled": true,
"deposit_enabled": true
}
]
}
}