Skip to main content

Trading Pair Detail

Get detailed information by trading pair name.

API Information

  • Method: GET
  • Path: /fapi/v1/symbols/{symbol}

Request Parameters

ParameterLocationTypeRequiredDescription
symbolpathstringYesTrading pair name, e.g. BTC_USDT
with_mergesquerybooleanNoWhether to include price aggregation levels, default false

Request Example

GET /fapi/v1/symbols/BTC_USDT?with_merges=true

Response Fields

Fields are the same as in "Trading Pair List".

FieldTypeDescription
codeintegerStatus code
messagestringResponse message
data.symbolstringTrading pair
data.base_asset / quote_asset / margin_assetstringAssets
data.contract_typeintegerContract type: 1=USDT-margined, 2=coin-margined
data.statusintegerStatus
data.max_leverageintegerMaximum leverage
data.maintenance_margin_ratestringMaintenance margin rate
data.maker_fee_rate / taker_fee_ratestringFee rates
data.price_precision / price_stepanyPrice precision
data.qty_precision / qty_stepanyQuantity precision
data.min_qty / max_qty / min_notionalstringOrder limits
data.price_mergesarrayPrice aggregation levels (returned when with_merges=true)
data.logostringLogo URL

Response Example

{
"code": 0,
"message": "success",
"data": {
"symbol": "BTC_USDT",
"base_asset": "BTC",
"quote_asset": "USDT",
"margin_asset": "USDT",
"contract_type": 1,
"status": 1,
"max_leverage": 125,
"maintenance_margin_rate": "0.004",
"maker_fee_rate": "0.0002",
"taker_fee_rate": "0.0005",
"price_precision": 1,
"price_step": "0.1",
"qty_precision": 3,
"qty_step": "0.001",
"min_qty": "0.001",
"max_qty": "1000",
"min_notional": "5",
"market_price_protect_ratio": "0.05",
"price_merges": ["0.1", "1", "10", "100"],
"logo": "https://example.com/btc.png"
}
}