Skip to content
Authentication
The Kayse AI API uses API keys to authenticate requests to its endpoints. You can generate new API keys in your company settings under the "API Keys" section.
API Key Management
You can create multiple API keys, each with a custom name for easy identification. If you no longer need an API key, you can disable it through the dashboard without affecting your other keys.
Including Your API Key
Include your API key in all requests to the Kayse AI API using the following method:
Header Authentication:
X-API-KEY: your_api_key_hereReplace your_api_key_here with your actual API key.
Example Request
bash
curl --location --request GET 'https://public-api.kayse.ai/v1/clients/123' \
--header 'accept: application/json' \
--header 'X-API-KEY: your_api_key_here'Security
Keep your API keys secure. Do not share them in publicly accessible areas such as GitHub, client-side code, or public documents.