Voice Calls

Get a paginated list of voice calls.

GET /v1/conversations/voice

Parameters

Parameter
Type
Default
Description

from

ISO 8601

30 days ago

Start of the date range

to

ISO 8601

Now

End of the date range

cursor

string

Pagination cursor

limit

integer

25

Items per page (max: 100)

Response

{
  "data": [
    {
      "id": "990e8400-e29b-41d4-a716-446655440000",
      "from_number": "+45 12345678",
      "to_number": "+45 87654321",
      "started_at": "2026-03-10T10:30:00.000Z",
      "duration_seconds": 300,
      "status": "completed"
    }
  ],
  "pagination": {
    "has_more": false,
    "next_cursor": null
  }
}

Response Fields

Field
Type
Description

id

string

Voice call ID

from_number

string|null

Caller phone number

to_number

string|null

Destination phone number

started_at

string

Call start time

duration_seconds

integer|null

Call duration in seconds

status

string|null

Call status

Example

Last updated