Skip to main content

Get Token Details

Query detailed information for a specific on-chain token, including description, social links, and risk flags.

info
  • Token is identified by chainCode + tokenAddress — get these from Get Biz Token List or Get Asset List
  • riskFlag=1 indicates risk — warn the user before trading
  • When showMessage=1, display the content notification to the user; if linkName and linkAddress are provided, include the link
  • Only returns tokens with status=1 (Listed) or status=2 (Delisting)

HTTP Request

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

Request Parameters

ParameterRequiredTypeComments
chainCodetruestringBlockchain code, e.g. ETH, SOL, BSC
tokenAddresstruestringToken contract address on the specified chain

Response Parameters

ParameterTypeComments
tokenCodestringToken code in DEX_<id> format
chainCodestringBlockchain code
chainIconUrlstringChain icon URL
tokenAddressstringToken contract address
symbolstringToken symbol
tokenDecimalsintegerToken decimal precision
tokenIconUrlDaystringToken icon URL (light mode)
tokenIconUrlNightstringToken icon URL (dark mode)
minOrderQuantitystringMinimum order quantity
maxOrderQuantitystringMaximum order quantity
maxPositionQuantitystringMaximum position quantity per user
tokenDescstringToken project description
xUrlstringX (Twitter) profile URL
officialUrlstringOfficial website URL
whitePaperUrlstringWhitepaper URL
tokenTagintegerToken tag. 0: No tag, 1: New token sniping, 2: On-chain hot token
riskFlagintegerRisk flag. 0: No risk, 1: Risk identified — warn user before trading
createTimeOnchainintegerOn-chain creation time (Unix timestamp in seconds)
statusintegerToken status. 0: Not listed, 1: Listed, 2: Delisting, 3: In delivery, 4: Delisted
tokenTagsarrayTag ID list
showMessageintegerWhether to display a notification. 0: No notification, 1: Display notification
contentstringNotification message content. Present when showMessage=1
linkNamestringNotification link display name. Present when showMessage=1
linkAddressstringNotification link URL. Present when showMessage=1

Request Example

POST /v5/alpha/trade/biz-token-details 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

{
"chainCode": "ETH",
"tokenAddress": "0x6982508145454ce325ddbe47a25d4ec3d2311933"
}

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",
"minOrderQuantity": "1",
"maxOrderQuantity": "50000",
"maxPositionQuantity": "100000",
"tokenDesc": "PEPE is a meme token on Ethereum.",
"xUrl": "https://x.com/pepecoineth",
"officialUrl": "https://www.pepe.vip",
"whitePaperUrl": "",
"tokenTag": 2,
"riskFlag": 0,
"createTimeOnchain": 1682000000,
"status": 1,
"tokenTags": [1, 2],
"showMessage": 0
},
"retExtInfo": {},
"time": 1704067200000
}