Skip to content

Recent Trades List

Latest Trade List Information

Http Request

GET
/api/usdt/instruments/trade_list

Request Frequency Restriction:

  • 10times / 1second

Request Parameters

Name Type Mandatory Description
instrument_id string YES Contract abbreviation, such as BTC, ETH, BCH, BSV, etc.

Response fields description

Name Type Description
price string Closing time
side string Transaction direction, s=main sell, b=main buy
volume string Volume (sheets)
timestamp string International time

Response

Format: [price, side, volume, timestamp]

{
  "code":200,
  "message":null,
  "data":[
    [
      "28297.1000",
      "s",
      "188",
      "1681122575132"
    ],
    [
      "28297.1000",
      "s",
      "112",
      "1681122572133"
    ],
    [
      "28297.1000",
      "b",
      "162",
      "1681122569143"
    ]
  ]
}