Recent Trades List
GETπ Public
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β
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | String | Yes | Symbol |
| limit | Integer | No | The count of trade list |
Response Contentβ
Successful response
example
GET
https://api.btse.com/public-api/market/v1/tradesResponse
{
"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"
}
]
}