Skip to main content
Returns a paginated list of all AI assistants belonging to the authenticated user.

Endpoint

GET /user/assistants/get

Query parameters

per_page
integer
Number of assistants per page. Range: 1–100. Default: 10.
page
integer
Page number. Default: 1.

Response

data
array
Array of assistant objects.
current_page
integer
Current page number.
per_page
integer
Number of items per page.
total
integer
Total number of assistants.
last_page
integer
Last page number.

Example

curl -X GET "https://portal.intellixent.ai/api/user/assistants/get?per_page=10&page=1" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response example

{
  "current_page": 1,
  "data": [
    {
      "id": 127,
      "user_id": 1,
      "name": "Sales Outreach Assistant",
      "type": "outbound",
      "mode": "pipeline",
      "status": "active",
      "initial_message": "Hi, this is an assistant from Your Company. How are you doing today?",
      "system_prompt": "You are a sales representative for Your Company...",
      "voice_id": 8,
      "language_id": 1,
      "phone_number_id": 45,
      "timezone": "America/Los_Angeles",
      "max_duration": 900,
      "record": true,
      "uuid": "a7b3c942-5f1e-4d28-8c59-2e4f7a8b9c3d",
      "created_at": "2025-07-15T14:32:15.000000Z",
      "updated_at": "2025-08-02T09:18:42.000000Z"
    }
  ],
  "per_page": 10,
  "total": 47,
  "last_page": 5
}