Trades

Retrieve historical trades for a given market pair. Most recent trades at the top.

Request

GET [ARCHIVE_V2_ENDPOINT]/trades?ticker_id=ARB_USDC&limit=10&max_trade_id=1000000

Request Parameters

Response

[
  {
    "ticker_id": "ARB_USDC",
    "trade_id": 999994,
    "price": 1.1366122408151016,
    "base_filled": 175,
    "quote_filled": -198.90714214264278,
    "timestamp": 1691068943,
    "trade_type": "buy"
  },
  {
    "ticker_id": "ARB_USDC",
    "trade_id": 999978,
    "price": 1.136512210806099,
    "base_filled": 175,
    "quote_filled": -198.8896368910673,
    "timestamp": 1691068882,
    "trade_type": "buy"
  }
]

Response Fields

Last updated