get https://public-api.birdeye.so/defi/v3/txs/recent
Retrieve a list of recent trades.
- Returns latest V3 DEX transactions (swaps) for a given chain.
- Only includes transactions from the last 24 hours or the most recent ~50,000 blocks, whichever is shorter.
- Does not support custom time or block range filtering.
- Parameters:
chain
: required (e.g.solana
,bsc
,eth
)dex
: optional (filter by specific DEX)page
,limit
: for pagination
- Results are ordered by descending
block_time
. - Each item includes trade details:
tx_hash
,block_time
, tokens, amounts, andprice_usd
.
Ideas 💡
- Track the latest DEX trades for a specific token across all supported DEXes.
- Ideal for analyzing token activity, trading momentum, or unusual volume spikes.
- Supports pagination for building continuous trade history views.
- Great for use in token detail pages, bots, and DeFi monitoring tools.