Skip to main content

Endpoints

Limits

Message Buffering

Each client has a 256-message outbound buffer. When the buffer fills (slow consumer), new messages are dropped silently—the connection remains open with no error sent.
Slow clients will miss data without warning. Process messages promptly to avoid gaps.

Rate Limiting

Exceeding 2,000 inbound messages/min triggers a JSON-RPC error. The connection stays open:
The retry_after field indicates seconds to wait before sending more messages.

JSON-RPC post Methods (Info + Exchange)

In addition to subscriptions, WebSocket supports request-response calls through:
  • method: "post"
  • params.type: "info" for all Info REST endpoints
  • params.type: "action" for all Exchange REST endpoints
The payload format mirrors the REST API reference methods and params. See the WSS section Info + Exchnage Requests for separate interactive pages:
  • Info Requests
  • Action Requests

Error Codes