Public Trade Fills
WSProduction
wss://ws.btse.com/ws/futuresTestnetwss://testws.btse.io/ws/futuresReal-time public trade feed for a market.
Topic: tradeHistoryApiV3:<symbol> β no authentication required.
Response Contentβ
| Name | Type | Required | Description |
|---|---|---|---|
| topic | String | Yes | WebSocket topic |
| data | Object[] | Yes | Array of data objects |
Data Object:
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | String | Yes | Market symbol |
| side | String | Yes | Trade side β BUY Β· SELL |
| size | Integer | Yes | Transacted size |
| price | Double | Yes | Transacted price |
| tradeId | Long | Yes | Trade sequence ID |
| timestamp | Long | Yes | Trade timestamp |
example
Response
{
"topic": "tradeHistoryApiV3:BTC-PERP",
"data": [
{
"symbol": "BTC-PERP",
"side": "SELL",
"size": 152,
"price": 111144.8,
"tradeId": 927002515,
"timestamp": 1752129545326
}
]
}