Skip to main content
GET
/
v2
/
sip
/
calls
List Phone Calls
curl --request GET \
  --url https://api.toughtongueai.com/api/public/v2/sip/calls \
  --header 'Authorization: Bearer <token>'
{
  "calls": [
    {
      "id": "call_abc123",
      "scenario_id": "scenario_xyz",
      "phone_number": "+14155551234",
      "status": "call_ended",
      "duration_seconds": 180,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 50
}
List SIP call records with filtering and pagination.
status
string
Filter by status: pending, scheduled, in_call_recording, call_ended, failed
scenario_id
string
Filter by scenario ID
batch_id
string
Filter by batch ID
from_date
string
Filter from date (ISO format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ)
to_date
string
Filter to date (ISO format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ)
page
integer
default:"1"
Page number (starts at 1)
limit
integer
default:"50"
Items per page (max 500)
{
  "calls": [
    {
      "id": "call_abc123",
      "scenario_id": "scenario_xyz",
      "phone_number": "+14155551234",
      "status": "call_ended",
      "duration_seconds": 180,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 50
}