Transactions
The Transactions group is the raw event layer for trade-level activity across tokens, pairs, wallets, and chains. Use this group when you need:- per-trade event streams instead of aggregated candles or stats
- token-specific or pair-specific trade history
- chain-wide recent trades
- time-bounded backfills
- large-trade filtering
- mint and burn event history
Which endpoint should I use?
Notes
- Use legacy token or pair trade endpoints for simple pagination and straightforward activity views.
- Use
seek_by_timeendpoints when you need incremental syncs or bounded time windows. - Use V3 trade endpoints when you need richer filters such as owner, source, pool, block-number ranges, or token-side
buyandsell. - Use
Trades - Recent (V3)for the freshest feed andTrades - All (V3)when you need a filtered archive. - Use
Trades - Token Filtered By Volume (V3)when you only care about larger prints.
Typical workflow
- Start with
Trades - Recent (V3)orTrades - Token (V3)to inspect current activity. - Switch to
seek_by_timeorTrades - All (V3)for bounded backfills. - Add price, holder, liquidity, or wallet analysis endpoints to explain who traded and what changed after the trade flow.

