Skip to main content
GET
/
api
/
v1
/
voice
/
calls
curl https://api.247calldesk.com/api/v1/voice/calls?limit=10 \
  -H "Authorization: Bearer calldesk_abc123"
{
  "calls": [
    {
      "call_id": "call_cm1abc2def3gh4",
      "status": "DIALER_COMPLETED",
      "caller_id": "+14155550123",
      "destination": "+14155559876",
      "duration_seconds": 145,
      "created_at": "2026-04-15T18:30:22Z"
    }
  ],
  "next_cursor": "call_cm1xyz..."
}
cursor
string
Pagination cursor from a previous response.
limit
integer
default:"50"
Number of results per page (1-100).
status
string
Filter by call status: DIALER_INITIATED, DIALER_RINGING, DIALER_COMPLETED, DIALER_FAILED.
from_date
string
Filter calls created after this ISO 8601 date.
to_date
string
Filter calls created before this ISO 8601 date.
curl https://api.247calldesk.com/api/v1/voice/calls?limit=10 \
  -H "Authorization: Bearer calldesk_abc123"
{
  "calls": [
    {
      "call_id": "call_cm1abc2def3gh4",
      "status": "DIALER_COMPLETED",
      "caller_id": "+14155550123",
      "destination": "+14155559876",
      "duration_seconds": 145,
      "created_at": "2026-04-15T18:30:22Z"
    }
  ],
  "next_cursor": "call_cm1xyz..."
}