Trading Pair List
Get the list of all perpetual futures trading pairs.
API Information
- Method:
GET - Path:
/fapi/v1/symbols
Request Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| symbols | query | string | No | Trading pair list, comma-separated, e.g. BTC_USDT,ETH_USDT |
| tag | query | string | No | Tag filter: new / meme / innovation |
Request Example
GET /fapi/v1/symbols
Response Fields
| Field | Type | Description |
|---|---|---|
| code | integer | Status code |
| message | string | Response message |
| data | array | Trading pair list |
| data[].symbol | string | Trading pair, e.g. BTC_USDT |
| data[].base_asset | string | Base asset |
| data[].quote_asset | string | Quote asset |
| data[].margin_asset | string | Margin asset |
| data[].contract_type | integer | Contract type: 1=USDT-margined, 2=coin-margined |
| data[].status | integer | Status: 1=enabled, 2=disabled |
| data[].max_leverage | integer | Maximum leverage |
| data[].maintenance_margin_rate | string | Maintenance margin rate |
| data[].maker_fee_rate | string | Maker fee rate |
| data[].taker_fee_rate | string | Taker fee rate |
| data[].price_precision | integer | Price precision |
| data[].price_step | string | Price step |
| data[].qty_precision | integer | Quantity precision |
| data[].qty_step | string | Quantity step |
| data[].min_qty | string | Minimum order quantity |
| data[].max_qty | string | Maximum order quantity |
| data[].min_notional | string | Minimum notional value |
| data[].market_price_protect_ratio | string | Market price protection ratio |
| data[].price_merges | array | Price aggregation levels |
| 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"
}
]
}