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

Guides

Quickstart

Upload a call and fetch analysis in a few requests.

Read more

Authentication

Use Bearer or x-api-key authentication.

Read more

Errors

Understand status codes and error response shape.

Read more

Webhooks

Receive real-time call processing events in your app.

Read more

API Reference

Browse endpoint-level request and response details.

Read more

Core workflow

  1. Create or identify an agent with /agents.
  2. Request an upload URL with POST /calls/presigned-url.
  3. Upload audio using the returned presignedUrl.
  4. Create a call with POST /calls.
  5. Poll GET /calls/{callId}/analysis until status becomes completed.