Get List of Trading Pair Details
Get a detailed list of all trading pairs on the platform
(Authentication type:NONE, See Interface Permission)
Request Format
GET https://api-cloud.bitmart.com/spot/v1/symbols/details
Request Limit
Request Parameter
None
Request example
curl https://api-cloud.bitmart.com/spot/v1/symbols/details
Response Data
Field | Type | Description |
---|---|---|
symbols | List | Array of trading pair details |
Instruction
Description of the trading pair details field:
Trading pair details | Type | Description |
---|---|---|
symbols | List | Array of trading pair details |
symbol | string | Trading pair name |
symbol_id | int | Trading pair id |
base_currency | string | Base currency |
quote_currency | string | Quote currency |
quote_increment | string | The minimum order quantity is also the minimum order quantity increment |
base_min_size | string | Minimum order quantity |
base_max_size | string | Maximum order quantity |
price_min_precision | number | Minimum price accuracy (decimal places), used to query k-line and depth |
price_max_precision | number | Maximum price accuracy (decimal places), used to query k-line and depth |
expiration | string | Expiration time of trading pair |
min_buy_amount | string | Minimum order amount |
min_sell_amount | string | Maximum order amount |
Example of returned data format
{
"code": 1000,
"trace":"886fb6ae-456b-4654-b4e0-d681ac05cea1",
"message": "OK",
"data": {
"symbols": [
{
"symbol":"GXC_BTC",
"symbol_id":1024,
"base_currency":"GXC",
"quote_currency":"BTC",
"quote_increment":"1.00000000",
"base_min_size":"1.00000000",
"base_max_size":"10000000.00000000",
"price_min_precision":6,
"price_max_precision":8,
"expiration":"NA",
"min_buy_amount":"0.00010000",
"min_sell_amount":"0.00010000"
},
...
]
}
}