WebSocket API
Errors
WebSocket error response format and common integration errors
Error Format
{
"type": "error",
"channel": "CHANNEL_NAME",
"message": "error description",
"code": 400
}Common Errors
| Code | Message | Resolution |
|---|---|---|
400 | given channel/mkt_id is unsupported | Verify channel name and market identifier |
401 | not authenticated | Send auth message before subscribing to private channels |
Operational Guidance
- Treat auth failures as non-retryable until credentials/signature are refreshed.
- Treat unsupported channel/market errors as configuration bugs, not transient failures.
- Log full error payloads for diagnostics.
- Reconnect with backoff only for transport-level failures.
See GET /error-codes for the full list of API error codes.