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

Order Feed

Live order status events from the history service

Use this stream for authenticated order status events from the history service.

Endpoint

wss://history-service.outpoll.com/order/ws

Authentication

Send this message right after connect.

{
  "t": "AUTH",
  "d": {
    "apiKey": "<API_KEY>",
    "signature": "<SIGNATURE>",
    "timestamp": "<UNIX_EPOCH_SECONDS>"
  }
}

Build signature from timestamp + "GET" + "/order/ws".

Success response:

{
  "t": "SUCCESS",
  "d": {
    "message": "AUTH successful"
  },
  "r": null
}

Notes

  • Use this stream for live order status events.

  • Message payloads can vary by event type.

  • Re-authenticate after reconnect.

Python example

Last updated

Was this helpful?