X-Api-Key as the primary credential for public API integration.
X-Api-Key: <api_key>
API key example
cURL
Optional: bearer token
Bearer token is still supported for session-based login flows.Token management
- Store credentials in server-side secret manager.
- Never expose credentials in browser client code.
- Rotate credentials if you suspect leakage.
Creating API keys
API keys are managed through:POST /v1/api-keysGET /v1/api-keysDELETE /v1/api-keys/{keyID}
Authentication errors
If token is missing or invalid, API returns401 Unauthorized.
See Error handling for response schema.