Token List
API Description
Retrieves a list of all available ALPHA tokens, including their IDs and symbols. Use this to find the token ID for constructing symbols in other endpoints.
HTTP Request
GET /bapi/defi/v1/public/wallet-direct/buw/wallet/cex/alpha/all/token/list
Full URL
https://www.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/cex/alpha/all/token/list
Parameters
None
Response Structure
code: String (e.g., 000000 for success)message: Null, generally used for returning informational messages.messageDetail: Null, usually for more detailed messages or error descriptions.success: Boolean, indicates whether the API call was successful (true).data: Array of objects, each representing a token with fields like:alphaId: Integer (alpha ID, e.g., ALPHA_175)symbol: String (token symbol, e.g., "USDT")name: String (full name, e.g., "USDT")chainId: String (chain id)contractAddress: String (contract address)- Other fields: May include decimals, network info, etc.
Response Example
{
"code": "000000",
"message": "",
"messageDetail": "",
"success": true,
"data": [
{
"tokenId": "3F350C8B3621770A673159B7A19BC034",
"chainId": "56",
"chainIconUrl": "https://bin.bnbstatic.com/image/admin_mgs_image_upload/20250228/d0216ce4-a3e9-4bda-8937-4a6aa943ccf2.png",
"chainName": "BSC",
"contractAddress": "0xcf640fdf9b3d9e45cbd69fda91d7e22579c14444",
"name": "gorilla",
"symbol": "gorilla",
"iconUrl": "https://bin.bnbstatic.com/images/web3-data/public/token/logos/248b5406f88a4ee28913a29107875339.png",
"price": "0.00080595003978242023",
"percentChange24h": "-7.42",
"volume24h": "14847.711222633409558029675",
"marketCap": "805950.03978242",
"fdv": "805950.03978242",
"liquidity": "263192.72813121626034",
"totalSupply": "1000000000",
"circulatingSupply": "1000000000",
"holders": "7120",
"decimals": 18,
"listingCex": false,
"hotTag": false,
"cexCoinName": "",
"canTransfer": false,
"denomination": 1,
"offline": false,
"tradeDecimal": 8,
"alphaId": "ALPHA_175",
"offsell": false,
"priceHigh24h": "0.00088873864475645879",
"priceLow24h": "0.0008020805165487083",
"count24h": "166",
"onlineTge": false,
"onlineAirdrop": false,
"score": 1,
"cexOffDisplay": false,
"stockState": false,
"listingTime": 1746686700000,
"mulPoint": 1,
"bnExclusiveState": false
}
]
}
Example Usage
Call this first to map symbol names to ALPHA token IDs.