Last Trades Feed
Public stream of the latest platform trades
Endpoint
wss://history-service.outpoll.com/last-trades/wsAuthentication
Subscription
Notes
Python example
import asyncio, json, websockets
async def last_trades():
uri = "wss://history-service.outpoll.com/last-trades/ws"
async with websockets.connect(uri) as ws:
async for msg in ws:
print(json.loads(msg))Last updated
Was this helpful?

