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β
| Name | Type | Description |
|---|---|---|
| id | Double | Serial ID |
| timestamp | Double | Trade executed unix timestamp |
| price | String | Transacted price |
| size | String | Transacted base currency size |
| quoteSize | String | Transacted quote currency size |
| side | String | Trade side β BUY Β· SELL |
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"
}
]
}