Use Case
Monitor multi-asset trading to:- Compare trading volumes across assets
- Identify trending assets
- Analyze cross-asset arbitrage opportunities
- Build market overview dashboards
Sample Response
Field Descriptions
coin- Asset symbol (e.g., “ETH”, “BTC”, “SOL”)px- Fill price in USDsz- Fill size in the asset’s base unitcrossed- Whether this fill crossed the order book (was a taker fill)tid- Trade ID (unique identifier for the matched trade)side- “A” (ask/sell) or “B” (bid/buy)dir- Trade direction: “Open Long”, “Close Long”, “Open Short”, “Close Short”
Analysis Tips
- Notional Volume =
px×sz(total USD value of the trade) - Taker fills have
crossed: true, maker fills havecrossed: false - Aggregate volumes across assets to identify the most actively traded markets
- Compare taker vs. maker ratios to understand market dynamics

