Get List of Trading Pairs
Get a 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
Request Limit
Request Parameter
None
Request example
curl https://api-cloud.bitmart.com/spot/v1/symbols
Response Data
Field | Type | Description |
---|---|---|
symbols | List | Array of trading pairs |
Instruction
Returns an array of trading pairs.
For example: ["BMX_ETH"], it means that the trading pair is listed, and the base currency of this trading pair is BMX, and the quote currency is ETH.
Example of returned data format
{
"code": 1000,
"trace":"886fb6ae-456b-4654-b4e0-d681ac05cea1",
"message": "OK",
"data": {
"symbols": [
"BMX_ETH",
"XLM_ETH",
"MOBI_ETH",
...
]
}
}