Smart Money - Token List
curl --request GET \
--url https://public-api.birdeye.so/smart-money/v1/token/list \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/smart-money/v1/token/list"
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/smart-money/v1/token/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": [
{
"token": "C6HB4R62NeXacwT4CAfohnCTJiaLhYfuQZNsbsqypump",
"price": 0.00001883295471804635,
"liquidity": 14375.686217934,
"market_cap": 18588.443206268883,
"net_flow": 52810.052897156216,
"smart_traders_no": 308,
"trader_style": "trenchers",
"volume_usd": 13862029.460908774,
"volume_buy_usd": 6957419.756902965,
"volume_sell_usd": 6904609.704005809,
"symbol": "Nazijak",
"name": "Nazi Wojak",
"logo_uri": "https://wsrv.nl/?w=128&h=128&default=1&url=https://ipfs.io/ipfs/bafkreiecr4nqikoow756ahfgjj7fhqga5nepbqyi3hqisw7ehk2p6uzm4y",
"price_change_percent": 43.032329448293844
}
]
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}Smart Money
Smart Money - Token List
Returns tokens identified via smart money traders, segmented by trader style and risk appetite.
GET
/
smart-money
/
v1
/
token
/
list
Smart Money - Token List
curl --request GET \
--url https://public-api.birdeye.so/smart-money/v1/token/list \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/smart-money/v1/token/list"
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/smart-money/v1/token/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": [
{
"token": "C6HB4R62NeXacwT4CAfohnCTJiaLhYfuQZNsbsqypump",
"price": 0.00001883295471804635,
"liquidity": 14375.686217934,
"market_cap": 18588.443206268883,
"net_flow": 52810.052897156216,
"smart_traders_no": 308,
"trader_style": "trenchers",
"volume_usd": 13862029.460908774,
"volume_buy_usd": 6957419.756902965,
"volume_sell_usd": 6904609.704005809,
"symbol": "Nazijak",
"name": "Nazi Wojak",
"logo_uri": "https://wsrv.nl/?w=128&h=128&default=1&url=https://ipfs.io/ipfs/bafkreiecr4nqikoow756ahfgjj7fhqga5nepbqyi3hqisw7ehk2p6uzm4y",
"price_change_percent": 43.032329448293844
}
]
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}- Usage Note
- Accessibility
- Chain Supported
Token list ranked through smart-money wallet behavior.
intervalcontrols the observation window.trader_stylenarrows the wallet cohort driving the ranking.sort_bycontrols which smart-money dimension leads the ranking.- Results are paginated with
offsetup to10,000andlimitup to20.
- Lite
- Starter
- Premium
- Business
- Enterprise
SVM ⛓️ ✨
EVM ⛓️ ✨
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
20 CUper request.
Use Cases 💡
Use Cases 💡
- Discover tokens being accumulated or actively traded by stronger wallets.
- Build smart-money boards, alpha feeds, and conviction watchlists.
- Compare trader styles and risk appetite across token sets.
How to Use 🛠️
How to Use 🛠️
- Set
x-chainto a supported PnL-compatible network. - Choose
interval,trader_style, andsort_byfor the signal you want. - Page through the ranked token list with
offsetandlimit.
Best Practices ✅
Best Practices ✅
- Use this as a discovery layer first, then validate shortlisted tokens with price, market, holder, and security data.
- Keep interval and sort choice explicit in UI so users understand why a token ranks highly.
Authorizations
API key for authentication
Headers
The chain support PNL data.
Available options:
solana, ethereum, arbitrum, avalanche, bsc, optimism, polygon, base, zksync, monad, hyperevm, mantle, megaeth, robinhood Query Parameters
Available options:
1d, 7d, 30d Available options:
all, risk_averse, risk_balancers, trenchers Available options:
net_flow, smart_traders_no, market_cap Specify the sort order.
Available options:
desc, asc Pagination start position. offset + limit <= 10000
Required range:
0 <= x <= 10000Required range:
1 <= x <= 20Was this page helpful?

