Skip to main content
Returns a paginated list of all calls belonging to the authenticated user. Use filters to narrow results by status, type, date range, assistant, or campaign.

Endpoint

GET /user/calls

Query parameters

status
string
Filter by call status. Possible values: initiated, ringing, busy, in-progress, ended, completed, ended_by_customer, ended_by_assistant, no-answer, failed.
type
string
Filter by call type: inbound, outbound, or web.
phone_number
string
Filter by client phone number.
assistant_id
integer
Filter by assistant ID.
campaign_id
integer
Filter by campaign ID.
date_from
string
Filter calls from this date. Format: YYYY-MM-DD.
date_to
string
Filter calls up to this date. Format: YYYY-MM-DD.
per_page
integer
Number of calls per page. Range: 1–100. Default: 15.
page
integer
Page number. Default: 1.

Response

data
array
Array of call objects.
current_page
integer
Current page number.
per_page
integer
Number of items per page.
total
integer
Total number of calls matching the filters.
last_page
integer
Last page number.

Example

curl -X GET "https://portal.intellixent.ai/api/user/calls?status=completed&per_page=15&page=1" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 Response
{
  "current_page": 1,
  "data": [
    {
      "id": 123,
      "assistant_name": "Sales Assistant",
      "campaign_name": "Q4 Outreach Campaign",
      "type": "outbound",
      "duration": 245,
      "assistant_phone_number": "+1234567890",
      "client_phone_number": "+1987654321",
      "status": "completed",
      "transcript": "Hello, this is Sarah from Intellixent...",
      "variables": {
        "customer_name": "John Smith",
        "interest_level": "high"
      },
      "evaluation": {
        "sentiment": "positive",
        "outcome": "qualified_lead",
        "score": 8.5
      },
      "carrier_cost": 0.02,
      "total_cost": 0.025,
      "answered_by": "human",
      "recording_url": "https://portal.intellixent.ai/recordings/calls/123.mp3",
      "created_at": "2025-08-04 14:30:00",
      "updated_at": "2025-08-04 14:34:05"
    }
  ],
  "per_page": 15,
  "total": 150,
  "last_page": 10
}