For the complete documentation index, see llms.txt. This page is also available as Markdown.

Last Trades Feed

Public stream of the latest platform trades

Use this stream for the latest public trades across the platform.

Endpoint

wss://history-service.outpoll.com/last-trades/ws

Authentication

No authentication required.

Subscription

No subscribe message required.

Connect and start reading messages.

Notes

  • This is a public broadcast stream.

  • Reconnect and continue consuming on disconnect.

  • Payloads represent the latest completed trades.

Python example

last_trades.py
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?