Voxxi External API
Use the Voxxi external API to manage agents, upload call recordings, and retrieve structured call analysis results.
Overview
Base path: https://app.voxxi.ai/api/external/v1/
Authentication: Authorization: Bearer <api_key> or x-api-key: <api_key>
Main resources:
- Agents: create, list, update, delete
- Calls: create upload URL, create call, fetch analysis
Core workflow
- Create or identify an agent with
/agents. - Request an upload URL with
POST /calls/presigned-url. - Upload audio using the returned
presignedUrl. - Create a call with
POST /calls. - Poll
GET /calls/{callId}/analysisuntilstatusbecomescompleted.