Skip to main content
curl -X GET https://api.thinnest.ai/v2/sessions \
  -H "Authorization: Bearer $THINNESTAI_API_KEY"
GET /v2/sessions

Query Parameters

agent_id
string
Filter by agent public ID
limit
integer
Max results (default: 50, max: 100)
offset
integer
Pagination 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"
  }
]