Skip to main content

Public Trade Fills

WSProductionwss://ws.btse.com/ws/futuresTestnetwss://testws.btse.io/ws/futures

Real-time public trade feed for a market. Topic: tradeHistoryApiV3:<symbol> β€” no authentication required.

Response Content​

NameTypeRequiredDescription
topicStringYesWebSocket topic
dataObject[]YesArray of data objects

Data Object:

NameTypeRequiredDescription
symbolStringYesMarket symbol
sideStringYesTrade side β€” BUY Β· SELL
sizeIntegerYesTransacted size
priceDoubleYesTransacted price
tradeIdLongYesTrade sequence ID
timestampLongYesTrade timestamp
example

Response

{
"topic": "tradeHistoryApiV3:BTC-PERP",
"data": [
{
"symbol": "BTC-PERP",
"side": "SELL",
"size": 152,
"price": 111144.8,
"tradeId": 927002515,
"timestamp": 1752129545326
}
]
}