WebSocket connection limits
In addition to the per-tier connection caps above, each WebSocket connection has the following ceilings:
Send the literal text frame
PING to reset the idle timer; the server replies with PONG.
Client guidance
- Throttle on the client. The server will reject excess traffic without backoff hints.
- Keep order placement and cancellation in separate queues so a cancellation burst can’t starve placements.
- Share a single WebSocket connection across strategies rather than reconnecting on every restart — the connection cap is the binding constraint long before the request cap is.
- Use
GET /timeto keep clocks aligned. L2 HMAC requests fail ifXO_TIMESTAMPdrifts more than ±30 s from server time.