Authentication
All https://app.voxxi.ai/api/external/v1/ endpoints require a valid external API key.
API key authentication
Create and manage external API keys in the Voxxi Integrations settings.
The API accepts either:
Authorization: Bearer <api_key>x-api-key: <api_key>
Header options
Equivalent authentication headers
curl "https://app.voxxi.ai/api/external/v1/agents" \
-H "Authorization: Bearer $VOXXI_API_KEY"
Failure responses
If the key is missing or invalid, the API returns:
{ "error": "Missing API key" }
or:
{ "error": "Invalid API key" }
Both return HTTP 401.