Skip to main content

Trading Pair Boards

Get the hot list, gainers list, and new listing list.

API Information

  • Method: GET
  • Path: /fapi/v1/symbols/boards

Request Parameters

ParameterLocationTypeRequiredDescription
limitqueryintegerNoNumber returned for each board, default 10
tagquerystringNoTag: new / meme / innovation

Request Example

GET /fapi/v1/symbols/boards?limit=20

Response Fields

FieldTypeDescription
codeintegerStatus code
messagestringResponse message
data.hotarrayHot list (trading pair list)
data.gainerarrayGainers list
data.newarrayNew 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": []
}
}