Skip to main content
GET
/
v1
/
voiceai
/
conversations
List Conversations
curl --request GET \
  --url https://api.example.com/v1/voiceai/conversations
{
  "conversations": [
    {
      "agent_id": "<string>",
      "conversation_id": "<string>",
      "start_time_unix_secs": 123,
      "call_duration_secs": 123,
      "message_count": 123,
      "status": "<string>",
      "call_successful": "<string>",
      "agent_name": "<string>",
      "transcript_summary": "<string>",
      "call_summary_title": "<string>",
      "direction": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Headers

x-api-key
string | null

API key for authentication

Query Parameters

limit
integer
default:20

Items per page

Required range: 1 <= x <= 100
cursor
string | null

Cursor for pagination

status
string | null

Filter by status (ongoing, completed)

direction
string | null

Filter by direction (inbound, outbound)

Response

Successful Response

conversations
ConversationListResponse · object[]
required
has_more
boolean
required
next_cursor
string | null
required