Authentication
All API requests require authentication via a Bearer token in the Authorization header.
Request Header
Authorization: Bearer ux_sk_YOUR_API_KEY
API Key Format
All Ultramaxo API keys start with the prefix ux_sk_ followed by a random string. You can generate keys from the API Console.
ux_sk_a1b2c3d4e5f6g7h8i9j0...
Example
curl https://api.ultramaxo.tech/v1/models \ -H "Authorization: Bearer ux_sk_YOUR_KEY"
Security Best Practices
- Never expose your API key in client-side code or public repositories.
- Use environment variables to store your keys.
- Rotate keys periodically from the API Console.
- Revoke compromised keys immediately.