Skip to main content

Recent Trades List

Retrieve recent transaction data for a symbol.

Only data from the last 3 days is supported. If the count of transactions for the specified symbol in the last 3 days is less than the requested limit, only the available count will be returned.

Request Parameters​

NameTypeRequiredDescription
symbolStringYesSymbol
limitIntegerNoThe count of trade list

Response Content​

Successful response

example
GEThttps://api.btse.com/public-api/market/v1/trades

Response

{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"id": 85997837,
"timestamp": 1624990000940,
"price": "20334",
"size": "0.0021",
"quoteSize": "42.7014",
"side": "BUY"
},
{
"id": 85997835,
"timestamp": 1624989977940,
"price": "20335",
"size": "0.0002",
"quoteSize": "4.067",
"side": "SELL"
}
]
}