Overview
Every request to the Kener API (except the public status endpoint) must include a valid API key in theAuthorization header.
API key format
API keys are prefixed withkener_ followed by 64 random hexadecimal characters:
Sending the API key
Pass your API key as a Bearer token in theAuthorization header:
Creating an API key
Create API keys from the Administration → API Keys section of the Kener dashboard. See API Keys for step-by-step instructions.Copy your API key immediately after creation — it is shown only once and cannot be retrieved later.
Authentication errors
If your API key is missing or invalid, the API returns a401 Unauthorized response:
Security recommendations
- Store your API key in an environment variable, not in source code.
- Rotate keys periodically from the dashboard.
- Revoke keys immediately if they are compromised.