Skip to main content

Query the list of recent transactions

GET: /v1/spot/public/trade/recent

Parameters

ParameterTypemandatoryDefaultDescriptionRanges
symbolstringtruetrading pair eg:btc_usdt
limitnumberfalse2001~1000

Limit Flow Rules

10/s/ip

Java
public String tradeRecent(){

}
Response
{
"code": 200,
"msg": "string",
"msgInfo": [
{}
],
"data": [
{
"i": 0, //ID
"t": 0, //transaction time
"p": "string", //transaction price
"q": "string", //transaction quantity
"v": "string", //transaction volume
"b": true //whether is buyerMaker or not
}
]
}