Skip to main content
Trade events represent executed transactions only. They are normalized so you can compare fills across venues without translating symbol formats or side conventions.

Fields

  • timestamp: execution time in UTC microseconds
  • data.price: matched execution price
  • data.quantity: executed size in base units
  • data.side: aggressor side, one of buy, sell, or unknown
Example:
{
  "timestamp": 1767225600123456,
  "venue": "binance",
  "symbol": "ETH-USD",
  "type": "trade",
  "data": {
    "price": 3182.4,
    "quantity": 1.25,
    "side": "sell"
  }
}
For request parameters and pagination, see the Trades API.

Next steps

  • Read Trades API for request parameters and auth behavior.
  • Read OHLCV if you want interval-based aggregations derived from trade flow.
  • Read Raw payloads if you need exchange-native trade messages instead.