v51

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-02172186551.1 KB
Voice Agents

List voice calls

List voice calls for this project, most recent first. Transcripts are omitted from the list; fetch a single call to get its transcript.

get/v1/calls

Query parameters

status'queued' | 'ringing' | 'in_progress' | 'completed' | 'failed' | 'busy' | 'no_answer' | 'canceled'

Lifecycle status of a voice call.

  • queued: outbound call created, not yet dialing.
  • ringing: dialing (outbound) or received and ringing (inbound).
  • in_progress: answered, the agent is connected.
  • completed: ended after a conversation.
  • failed: could not be completed.
  • busy: the line was busy.
  • no_answer: rang but was not answered.
  • canceled: canceled before it was answered.
direction'inbound' | 'outbound'

Whether the call was placed by Zavu (outbound) or received from a caller (inbound).

limitinteger
cursorstring

Response

List of voice calls.

nextCursorstring nullable

Example response

{
  "items": [
    {
      "id": "call_abc123",
      "from": "+13125551212",
      "to": "+56912345678"
    }
  ]
}