Recent Trades

Get the latest public trades for a symbol

Get Recent Trades

GET /v1/trades?symbol=BTCUSDT&limit=20

Query Parameters:

ParameterTypeRequiredDefaultDescription
symbolstringYes-Trading pair
limitnumberNo20Number of trades to return

Response:

{
  "ok": true,
  "trades": [
    {
      "id": 123456,
      "price": "71034.5",
      "qty": "0.123",
      "time": 1711756800000,
      "isBuyerMaker": false
    }
  ]
}
FieldDescription
idUnique trade ID
priceTrade price
qtyTrade quantity
timeTrade timestamp (Unix ms)
isBuyerMakertrue if the buyer was the maker (sell aggressor)

On this page