Get Trade Histories

Request via this endpoint to get the trade history of the specified symbol, the returned quantity is the last 100 transaction records.

HTTP REQUEST

GET /api/v1/market/histories

Example

GET /api/v1/market/histories?symbol=BTC-USDT

[
  {
    "sequence": "1545896668571",
    "price": "0.07", //Filled price
    "size": "0.004", //Filled amount
    "side": "buy", //Filled side. The filled side is set to the taker by default.
    "time": 1545904567062140823 //Transaction time
  },
  {
    "sequence": "1545896668578",
    "price": "0.054",
    "size": "0.066",
    "side": "buy",
    "time": 1545904581619888405
  }
]
REQUEST URL

This endpoint support Spot URL

REQUEST RATE LIMIT

Public weight:3

PARAMETERS
Param Type Mandatory Description
symbol String Yes symbol
RESPONSES
Param Description
sequence Sequence number
time Transaction time
price Filled price
size Filled amount
side Filled side. The filled side is set to the taker by default
SIDE

The trade side indicates the taker order side. A taker order is the order that was matched with orders opened on the order book.