Authentication
All API requests to ConvoTune must be authenticated. We use API Keys to allow access to the API. You can create and manage your API keys from your ConvoTune Dashboard.
Using Your API Key
ConvoTune uses Bearer Authentication. You must pass your API key in the Authorization
header with every request. Make sure to include the Bearer
prefix followed by a space.
Authorization: Bearer YOUR_API_KEY
Security Warning
Keep your API keys secure! Do not share them in publicly accessible areas such as GitHub, client-side code, etc.
Handling Errors
If your API key is missing, invalid, or disabled, you will receive a 401 Unauthorized
HTTP response code with the following body:
{
"detail": "Not authenticated"
}