Get Cross Margin Trading Pairs Configuration
This endpoint allows querying the configuration of cross margin trading pairs.
HTTP REQUEST
GET /api/v3/margin/symbols
Example
GET /api/v3/margin/symbols
{
"code": "200000",
"data": {
"timestamp": 1718779915377,
"items": [{
"symbol": "ATOM-USDT",
"name": "ATOM-USDT",
"enableTrading": true,
"market": "USDS",
"baseCurrency": "ATOM",
"quoteCurrency": "USDT",
"baseIncrement": 0.0001,
"baseMinSize": 0.1,
"quoteIncrement": 0.0001,
"quoteMinSize": 0.1,
"baseMaxSize": 10000000000,
"quoteMaxSize": 99999999,
"priceIncrement": 0.0001,
"feeCurrency": "USDT",
"priceLimitRate": 0.1,
"minFunds": 0.1
}]
}
}
API KEY PERMISSIONS
This endpoint requires General permission.
REQUEST URL
This endpoint supports Spot URL
.
REQUEST RATE LIMIT
Spot Market Weight
: 5
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
symbol | String | No | Optional. If not provided, all cross margin trading pairs will be queried. If provided, only the specified trading pair will be queried. |
RESPONSES
Param | Description |
---|---|
symbol | Trading pair code |
name | Trading pair name |
enableTrading | Whether trading is enabled: true for enabled, false for disabled |
market | Trading market |
baseCurrency | Base currency |
quoteCurrency | Quote currency |
baseIncrement | Minimum price increment for baseCurrency |
baseMinSize | Minimum order size for baseCurrency. If empty, there is no limit |
quoteIncrement | Minimum price increment for quoteCurrency |
quoteMinSize | Minimum order size for quoteCurrency |
baseMaxSize | Maximum order size for baseCurrency |
quoteMaxSize | Maximum order size for quoteCurrency |
priceIncrement | Price increment for limit orders. Orders must be placed in multiples of this increment |
feeCurrency | Currency used for calculating trading fees |
priceLimitRate | Price protection threshold |
minFunds | Minimum trading amount |