List Chats

Retrieve all chat sessions for the authenticated user.

GET/v2/chats

List all chat sessions with pagination.

Query Parameters

Max results (1-200)
Pagination offset
Filter by agent public ID

Response 200

{
  "chats": [
    {
      "id": "sess_abc123",
      "agent_id": 5,
      "name": "Sales inquiry",
      "source": "dashboard",
      "message_count": 12,
      "created_at": "2026-03-25T10:00:00Z",
      "updated_at": "2026-03-25T10:15:00Z"
    }
  ],
  "total": 1
}

Errors

CodeDescription
401Missing or invalid authentication

On this page