Trading Pair Boards
Get the hot list, gainers list, and new listing list.
API Information
- Method:
GET - Path:
/api/v1/symbols/boards
Request Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| limit | query | integer | No | Number returned for each board, default 10, max 100 |
| tag | query | string | No | Tag filter: new / meme / innovation |
Request Example
GET /api/v1/symbols/boards?limit=20
Response Fields
| Field | Type | Description |
|---|---|---|
| code | integer | Status code |
| message | string | Response message |
| data.hot_list | array | Hot list (trading pair list) |
| data.gainers_list | array | Gainers list (trading pair list) |
| data.new_list | array | New listing list (trading pair list) |
Each list item is a complete trading pair object. See "Trading Pair List" for fields.
Response Example
{
"code": 0,
"message": "success",
"data": {
"hot_list": [
{
"id": 1,
"symbol": "BTC_USDT",
"base_asset": "BTC",
"quote_asset": "USDT",
"status": 1,
"is_hot": true
}
],
"gainers_list": [
{
"id": 2,
"symbol": "ETH_USDT",
"base_asset": "ETH",
"quote_asset": "USDT",
"status": 1,
"is_gainer": true
}
],
"new_list": [
{
"id": 3,
"symbol": "SOL_USDT",
"base_asset": "SOL",
"quote_asset": "USDT",
"status": 1,
"is_new": true
}
]
}
}