Authorization header.
Get an API key
- Sign in to the Rime dashboard.
- In the Rime dashboard, open API Tokens.
- Create a token and copy its value.
Use the token
This request authenticates with a bearer token and returns MP3 audio:CLI authentication
Therime CLI manages the key locally. Run rime login once, and the CLI stores the key at ~/.rime/rime.toml. You can also set it with the RIME_CLI_API_KEY environment variable.
On-prem authentication
The on-prem API service accepts the sameAuthorization: Bearer … header. You can also configure RIME_API_KEY for the deployment so callers don’t need to send the header. See the on-prem quickstart for details.
Common auth errors
If your request fails authentication, the API returns401 Unauthorized with a short plain-text body explaining why:
Always send the header as
Authorization: Bearer <token> (capital B). The token alone, without Bearer, is rejected.

