Trading Pair Detail
Get detailed information by trading pair name.
API Information
- Method:
GET - Path:
/fapi/v1/symbols/{symbol}
Request Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| symbol | path | string | Yes | Trading pair name, e.g. BTC_USDT |
| with_merges | query | boolean | No | Whether 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".
| Field | Type | Description |
|---|---|---|
| code | integer | Status code |
| message | string | Response message |
| data.symbol | string | Trading pair |
| data.base_asset / quote_asset / margin_asset | string | Assets |
| data.contract_type | integer | Contract type: 1=USDT-margined, 2=coin-margined |
| data.status | integer | Status |
| data.max_leverage | integer | Maximum leverage |
| data.maintenance_margin_rate | string | Maintenance margin rate |
| data.maker_fee_rate / taker_fee_rate | string | Fee rates |
| data.price_precision / price_step | any | Price precision |
| data.qty_precision / qty_step | any | Quantity precision |
| data.min_qty / max_qty / min_notional | string | Order limits |
| data.price_merges | array | Price aggregation levels (returned when with_merges=true) |
| data.logo | string | Logo 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"
}
}