Token - Trending List
curl --request GET \
--url https://public-api.birdeye.so/defi/token_trending \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/token_trending"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/token_trending', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"updateUnixTime": 1726681733,
"updateTime": "2024-09-18T17:48:53",
"tokens": [
{
"address": "HJXh1XULVe2Mdp6mTKd5K7of1uFqBTbmcWzvBv6cpump",
"decimals": 6,
"liquidity": 34641.80933146691,
"logoURI": "https://ipfs.io/ipfs/QmR7QnPaYcfwoG8oymK5JRDsB9GSgHr71mJmL2MuJ7Qk3x",
"name": "AVOCATO",
"symbol": "ATO",
"volume24hUSD": 1202872.3148187269,
"volume24hChangePercent": 33,
"rank": 1,
"price": 0.00010551649518689046,
"price24hChangePercent": 210,
"fdv": 17028232129,
"marketcap": 28232129
},
{
"address": "HYFDwieKWth1kzKbtLFMtgMVwukyvyWNYFxyQDcWpump",
"decimals": 6,
"liquidity": 73874.80948083404,
"logoURI": "https://ipfs.io/ipfs/QmUxhHFAugzzWmTMCMCky1QjaJNjtpBNhC2iRELb77Vqfw",
"name": "The Liquidator",
"symbol": "LIQUIDATOR",
"volume24hUSD": 920580.3615402475,
"volume24hChangePercent": 5,
"rank": 2,
"price": 0.0006106216453936813,
"price24hChangePercent": 12,
"fdv": 1495237953,
"marketcap": 5425292
}
],
"total": 1000
}
}
Creation & Trending
Token - Trending List
Retrieve a dynamic and up-to-date list of trending tokens based on specified sorting criteria.
GET
/
defi
/
token_trending
Token - Trending List
curl --request GET \
--url https://public-api.birdeye.so/defi/token_trending \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/token_trending"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/token_trending', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"updateUnixTime": 1726681733,
"updateTime": "2024-09-18T17:48:53",
"tokens": [
{
"address": "HJXh1XULVe2Mdp6mTKd5K7of1uFqBTbmcWzvBv6cpump",
"decimals": 6,
"liquidity": 34641.80933146691,
"logoURI": "https://ipfs.io/ipfs/QmR7QnPaYcfwoG8oymK5JRDsB9GSgHr71mJmL2MuJ7Qk3x",
"name": "AVOCATO",
"symbol": "ATO",
"volume24hUSD": 1202872.3148187269,
"volume24hChangePercent": 33,
"rank": 1,
"price": 0.00010551649518689046,
"price24hChangePercent": 210,
"fdv": 17028232129,
"marketcap": 28232129
},
{
"address": "HYFDwieKWth1kzKbtLFMtgMVwukyvyWNYFxyQDcWpump",
"decimals": 6,
"liquidity": 73874.80948083404,
"logoURI": "https://ipfs.io/ipfs/QmUxhHFAugzzWmTMCMCky1QjaJNjtpBNhC2iRELb77Vqfw",
"name": "The Liquidator",
"symbol": "LIQUIDATOR",
"volume24hUSD": 920580.3615402475,
"volume24hChangePercent": 5,
"rank": 2,
"price": 0.0006106216453936813,
"price24hChangePercent": 12,
"fdv": 1495237953,
"marketcap": 5425292
}
],
"total": 1000
}
}
- Usage Note
- Accessibility
- Chain Supported
Dynamic token discovery ranked by recent trend signals.
- Use sorting and interval parameters to define what “trending” means for your screen or workflow.
- This is a discovery endpoint, not a full token fundamentals endpoint.
- Results are paginated for leaderboard-style browsing.
- Standard
- Lite
- Starter
- Premium
- Business
- Enterprise
All chains ⛓️ ✨
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
25 CUper request.
Use Cases 💡
Use Cases 💡
- Surface hot tokens across supported chains.
- Build trend boards, token-discovery feeds, and alert candidates.
- Feed watchlist generation with recently accelerating tokens.
How to Use 🛠️
How to Use 🛠️
- Set
x-chainfor the target network. - Choose the sort and interval parameters that match the trend horizon you care about.
- Page through results with
offsetandlimit.
Best Practices ✅
Best Practices ✅
- Use this endpoint for discovery first, then hydrate shortlisted tokens with market, price, or security data.
- Keep the selected interval visible in product UI so users understand the trend horizon.
Authorizations
API key for authentication
Headers
A chain name listed in supported networks.
Available options:
solana, ethereum, bsc, base, robinhood, sui, mantle, hyperevm, arbitrum, avalanche, optimism, polygon, zksync, monad, aptos, fogo, megaeth Query Parameters
Specify the sort field.
Available options:
rank, volumeUSD, liquidity Specify the interval of trending.
Available options:
1h, 4h, 24h Specify the sort order.
Available options:
asc, desc Specify the offset for pagination. Filter for records with offset greater than the specified offset value, including those with offset equal to the specified offset.
Number of items per page.
Required range:
1 <= x <= 50Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana
Available options:
raw, scaled Was this page helpful?

