How failures reach you, per transport
Log the complete close reason string. It carries the message, and where an HTTP equivalent applies it usually begins with that status as a diagnostic aid, so it is worth reading but not worth branching on.
Handle both failure paths: the same bad request can be rejected on the upgrade with an HTTP status, or accepted and then closed with
1011 once the socket is open.
400, the request was rejected
401, authentication failed
Note that
invalid subscription arrives as a 401 rather than a 402 or 403, so a billing problem can look like an authentication problem. If your key is correct and unchanged, check the account’s subscription before regenerating credentials. Create and manage keys on the API Tokens page; see Authentication.
403, authenticated but not allowed
access forbidden means the credential is valid but the account may not use this endpoint or resource. Retrying will not help. Contact support@rime.ai if you expect access.
429, too many requests
Currently at websocket limit is returned at the WebSocket upgrade when an account opens WebSocket connections faster than Rime allows. Rime does not publish a connection limit, so do not design to a specific number.
Treat a 429 as a signal to back off: stop opening new connections, retry the upgrade after a delay, and reuse existing connections rather than opening one per utterance. Limits apply to the account as a whole, so on a team account, connections opened by one member count against the others.
Synthesis concurrency is separate from this connection limit, and Rime does not publish a figure for it. If you need a concurrency commitment for capacity planning, contact support@rime.ai rather than inferring one from what you observe.
500 and 502, the request failed on Rime’s side
These are the only failures where a retry is reasonable on its own. Retry with backoff, and see the retry guidance below before retrying anything that may already have produced audio.
Retrying safely
Retry a 500 or 502. Do not retry a 400, 401, or 403: the request will fail identically and, for 401, repeated attempts with a bad credential are indistinguishable from an attack. For a 429, back off and retry the connection rather than the synthesis.What to send to support
Because no response carries a request ID you can quote, include all of the following when you report a failure. Redact your API key.- The UTC timestamp of the failure, to the second. This matters most, because it is how support locates the request
- The endpoint and regional endpoint you called
modelId,speaker, andlangexactly as sent- The HTTP status and the full plain-text body, or the WebSocket close code and its complete reason string
- A minimal request that reproduces it, with the key removed
- Whether any audio had already arrived when the failure occurred
Related
- API authentication: creating keys and the header format, for diagnosing 401s.
- Voices: the catalog to verify a
speaker,modelId, andlangcombination against. - Streaming formats: valid
audioFormatvalues and their tradeoffs. - WebSockets: which endpoint reports structured errors and which does not.

