Skip to main content

Get Biz Token List

Query the list of on-chain tokens available for trading, with risk flags and order limits.

info
  • Returns token codes in DEX_<id> format used by Get Trade Quote and execution endpoints
  • riskFlag=1 indicates risk — warn the user before proceeding to trade
  • payTokenCodes lists which payment tokens are supported for each trading token
  • To get token prices or market data, use Get Token Price List instead

HTTP Request

POST/v5/alpha/trade/biz-token-list

Request Parameters

ParameterRequiredTypeComments
tokenTagfalseintegerToken tag filter. 0: All (default), 1: New token sniping, 2: On-chain hot token

Response Parameters

ParameterTypeComments
tokenCodestringToken code in DEX_<id> format. Use this in quote and execution requests
chainCodestringBlockchain code, e.g. ETH, BSC, SOL, TRX, BASE
chainIconUrlstringChain icon URL
tokenAddressstringToken contract address on chain
symbolstringToken symbol, e.g. PEPE
tokenDecimalsintegerToken decimal precision
tokenIconUrlDaystringToken icon URL (light mode)
tokenIconUrlNightstringToken icon URL (dark mode)
createTimeintegerToken listing time on platform (Unix timestamp in seconds)
createTimeOnchainintegerToken creation time on chain (Unix timestamp in seconds)
riskFlagintegerRisk flag. 0: No risk identified, 1: Risk identified — warn user before trading
minOrderQuantitynumberMinimum order quantity (in payment token unit, e.g. USD)
maxOrderQuantitynumberMaximum order quantity (in payment token unit)
tokenTagsarrayTag ID list associated with this token
payTokenCodesarraySupported payment token codes (CEX_<id>), e.g. ["CEX_1", "CEX_2"]

Request Example

POST /v5/alpha/trade/biz-token-list HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1704067200000
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

{
"tokenTag": 2
}

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": [
{
"tokenCode": "DEX_123",
"chainCode": "ETH",
"chainIconUrl": "https://example.com/eth.png",
"tokenAddress": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
"symbol": "PEPE",
"tokenDecimals": 18,
"tokenIconUrlDay": "https://example.com/pepe-day.png",
"tokenIconUrlNight": "https://example.com/pepe-night.png",
"createTime": 1704067200,
"createTimeOnchain": 1682000000,
"riskFlag": 0,
"minOrderQuantity": 1,
"maxOrderQuantity": 50000,
"tokenTags": [1, 2],
"payTokenCodes": ["CEX_1", "CEX_2"]
}
],
"retExtInfo": {},
"time": 1704067200000
}