List Sessions

Retrieve all chat sessions for your account

GET /v2/sessions

Query Parameters

ParameterTypeDescription
agent_idstringFilter by agent public ID
limitintegerMax results (default: 50, max: 100)
offsetintegerPagination offset

Response

[
  {
    "id": "sess_abc123",
    "agent_id": "ag_xyz789",
    "status": "active",
    "message_count": 12,
    "created_at": "2026-03-25T10:00:00Z",
    "updated_at": "2026-03-25T10:05:00Z"
  }
]

On this page