Trading Pair Boards
Get the hot list, gainers list, and new listing list.
API Information
- Method:
GET - Path:
/fapi/v1/symbols/boards
Request Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| limit | query | integer | No | Number returned for each board, default 10 |
| tag | query | string | No | Tag: new / meme / innovation |
Request Example
GET /fapi/v1/symbols/boards?limit=20
Response Fields
| Field | Type | Description |
|---|---|---|
| code | integer | Status code |
| message | string | Response message |
| data.hot | array | Hot list (trading pair list) |
| data.gainer | array | Gainers list |
| data.new | array | New listing list |
Each item is a full trading pair object. See "Trading Pair List" for fields.
Response Example
{
"code": 0,
"message": "success",
"data": {
"hot": [
{
"symbol": "BTC_USDT",
"base_asset": "BTC",
"quote_asset": "USDT",
"margin_asset": "USDT",
"contract_type": 1,
"status": 1,
"max_leverage": 125
}
],
"gainer": [],
"new": []
}
}