Market

Recent Trades List

Get recent trades.

Weight(IP): 10

get/api/v3/trades

Query parameters

symbolstring required
Example:BNBUSDT

Trading symbol, e.g. BNBUSDT

limitinteger
Example:5

Default 500; max 1000.

Response

Trade list

idinteger required

trade id

pricestring required

price

qtystring required

amount of base asset

quoteQtystring required

amount of quote asset

timeinteger required

Trade executed timestamp, as same as T in the stream

isBuyerMakerboolean required
isBestMatchboolean required

Example response

[
  {
    "id": 345196462,
    "price": "9638.99000000",
    "qty": "0.02077200",
    "quoteQty": "0.02077200",
    "time": 1592887772684
  }
]

Changes

Changed in 1 of the 26 revisions of this API.19

  • a484ce871a7219See the full diff
    • for the query request parameter limit, the type/format was changed from integer/ to integer/int32

      request-parameter-type-changed

    • the response property code became required for the status 400

      response-property-became-required

    • the response property items/id became required for the status 200

      response-property-became-required

    • the response property items/isBestMatch became required for the status 200

      response-property-became-required

    • the response property items/isBuyerMaker became required for the status 200

      response-property-became-required

    • the response property items/price became required for the status 200

      response-property-became-required

    • the response property items/qty became required for the status 200

      response-property-became-required

    • the response property items/quoteQty became required for the status 200

      response-property-became-required

    • the response property items/time became required for the status 200

      response-property-became-required

    • the response property msg became required for the status 400

      response-property-became-required