Light Mode
Get Symbols - Cross Margin
GET
/api/v3/margin/symbols:::info[Description]
This endpoint allows querying the configuration of cross margin symbol.
:::
Request
Query Params
symbol
string
optional
If not provided, all cross margin symbol will be queried. If provided, only the specified symbol will be queried.
Examples:
BTC-USDTETH-USDTKCS-USDT
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
string
required
data
object
required
timestamp
integer <int64>
required
items
array [object {16}]
required
Example
{
"code": "200000",
"data": {
"timestamp": 1729665839353,
"items": [
{
"symbol": "BTC-USDT",
"name": "BTC-USDT",
"enableTrading": true,
"market": "USDS",
"baseCurrency": "BTC",
"quoteCurrency": "USDT",
"baseIncrement": "0.00000001",
"baseMinSize": "0.00001",
"baseMaxSize": "10000000000",
"quoteIncrement": "0.000001",
"quoteMinSize": "0.1",
"quoteMaxSize": "99999999",
"priceIncrement": "0.1",
"feeCurrency": "USDT",
"priceLimitRate": "0.1",
"minFunds": "0.1"
}
]
}
}
Last modified: a month ago