Skip to main content

Get Token Price List

Batch query on-chain token prices, 24h change, volume, market cap, and other market data.

info

HTTP Request

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

Request Parameters

ParameterRequiredTypeComments
tokenAddressInfotruearrayList of token identifiers to query. Maximum 20 items per request
> chainCodetruestringBlockchain code, e.g. ETH, SOL, BSC
> tokenAddresstruestringToken contract address on the specified chain

Response Parameters

ParameterTypeComments
tokenPriceInfoListarrayToken price info list
> chainCodestringBlockchain code
> tokenAddressstringToken contract address
> pricestringCurrent price in USD
> change24hstring24-hour price change as decimal, e.g. 0.15 = +15%
> vol24hstring24-hour trading volume in USD
> marketCapstringMarket capitalization in USD
> liquiditystringTotal liquidity in USD
> holdersstringNumber of token holders

Request Example

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

{
"tokenAddressInfo": [
{
"chainCode": "ETH",
"tokenAddress": "0x6982508145454ce325ddbe47a25d4ec3d2311933"
},
{
"chainCode": "SOL",
"tokenAddress": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
}
]
}

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"tokenPriceInfoList": [
{
"chainCode": "ETH",
"tokenAddress": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
"price": "0.00001",
"change24h": "0.15",
"vol24h": "125000000",
"marketCap": "4200000000",
"liquidity": "50000000",
"holders": "250000"
}
]
},
"retExtInfo": {},
"time": 1704067200000
}