Account Stream
Accounts
Account Stream
Server-Sent Events stream of live account state (equity, P&L, margin).
The client receives an initial snapshot immediately on connect, then
updates pushed at most every 500 ms via Redis Pub/Sub fan-out.
Use EventSource in the browser:
const es = new EventSource('/accounts/12345/stream', {headers: {Authorization: 'Bearer ...'}});
es.addEventListener('state', e => console.log(JSON.parse(e.data)));
GET
Account Stream
Path Parameters
Response
Successful Response