All Time Trades (Multiple)
curl --request POST \
--url https://public-api.birdeye.so/defi/v3/all-time/trades/multiple \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v3/all-time/trades/multiple"
headers = {"X-API-KEY": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/v3/all-time/trades/multiple', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"address": "So11111111111111111111111111111111111111112",
"total_volume": 158766463.26959822,
"total_volume_usd": 20188521260.405678,
"volume_buy_usd": 20188521260.405678,
"volume_sell_usd": 20188521260.405678,
"volume_buy": 78227859.16098201,
"volume_sell": 80538604.1086162,
"total_trade": 258522892,
"buy": 87829497,
"sell": 170693395
}
],
"success": true
}{
"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"
}Alltime & History
All Time Trades (Multiple)
Get all time trades or follow duration transactions for multiple tokens. Max to 20 tokens
POST
/
defi
/
v3
/
all-time
/
trades
/
multiple
All Time Trades (Multiple)
curl --request POST \
--url https://public-api.birdeye.so/defi/v3/all-time/trades/multiple \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v3/all-time/trades/multiple"
headers = {"X-API-KEY": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/v3/all-time/trades/multiple', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"address": "So11111111111111111111111111111111111111112",
"total_volume": 158766463.26959822,
"total_volume_usd": 20188521260.405678,
"volume_buy_usd": 20188521260.405678,
"volume_sell_usd": 20188521260.405678,
"volume_buy": 78227859.16098201,
"volume_sell": 80538604.1086162,
"total_trade": 258522892,
"buy": 87829497,
"sell": 170693395
}
],
"success": true
}{
"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
Long-range trading activity for many tokens in one request.
- Maximum batch size is
20token addresses. - Use the same
time_frameacross the whole batch so tokens remain comparable. ui_amount_mode=scaledapplies Solana Token-2022 scaled UI amount when supported.
- Business
- Enterprise
All chains ⛓️ ✨
Compute Unit ⚙️
Compute Unit ⚙️
- Batch CU is calculated as
ceil(10 * count^0.8).
Use Cases 💡
Use Cases 💡
- Rank many tokens by long-range trading activity in one request.
- Build comparison tables, scanners, and portfolio research boards.
- Feed token screening logic with consistent all-time or duration-bounded trade metrics.
How to Use 🛠️
How to Use 🛠️
- Set
x-chainfor the target network. - Send up to
20token addresses in the request body. - Choose one shared
time_framefor the batch.
Best Practices ✅
Best Practices ✅
- Deduplicate token addresses before sending the batch.
- Keep the batch focused on tokens you truly want to compare under the same horizon.
- Use the single endpoint when one token needs deeper explanation or page-level detail.
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
Time interval (Example: '24h')
Available options:
1m, 5m, 30m, 1h, 2h, 4h, 8h, 24h, 3d, 7d, 14d, 30d, 90d, 180d, 1y, alltime A list of token addresses in string separated by commas (,)
Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana
Available options:
raw, scaled, both Was this page helpful?

