All Time Trades (Single)
curl --request GET \
--url https://public-api.birdeye.so/defi/v3/all-time/trades/single \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v3/all-time/trades/single"
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/v3/all-time/trades/single', 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 (Single)
Get all time trades or follow duration transactions for one token.
GET
/
defi
/
v3
/
all-time
/
trades
/
single
All Time Trades (Single)
curl --request GET \
--url https://public-api.birdeye.so/defi/v3/all-time/trades/single \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v3/all-time/trades/single"
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/v3/all-time/trades/single', 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 one token.
- Use
time_frameto choose the horizon: recent windows for momentum, orallfor cumulative token history. - Response is a summarized trade view, not a row-by-row transaction log.
ui_amount_mode=scaledapplies Solana Token-2022 scaled UI amount when the token supports the scaled UI extension.
- Standard
- Lite
- Starter
- Premium
- Business
- Enterprise
All chains ⛓️ ✨
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
10 CUper request.
Use Cases 💡
Use Cases 💡
- Measure long-term token trading traction beyond short intraday windows.
- Power research pages, ranking models, and token-comparison views.
- Compare cumulative trading intensity across different market cycles.
How to Use 🛠️
How to Use 🛠️
- Set
x-chainfor the target network. - Pass the token
address. - Choose
time_framebased on whether you want recent or all-time context. - Use
ui_amount_modeconsistently across related token analytics.
Best Practices ✅
Best Practices ✅
- Use this endpoint for compact trade-history metrics; switch to transaction endpoints when you need event-level detail.
- Compare tokens on the same
time_frameto keep rankings fair. - Pair this with price, volume, or market-data endpoints when you need both activity and valuation context.
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 The address of the token contract.
Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana
Available options:
raw, scaled, both Was this page helpful?

