List sessions
Returns a paginated list of sessions for the caller’s tenant (derived from JWT). Supports optional status filter. Requires read scope.
POST
List sessions
Body
application/json
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns a paginated list of sessions for the caller’s tenant (derived from JWT). Supports optional status filter. Requires read scope.
curl --request POST \
--url https://api.svantic.com/sessions/get \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"page_size": 25,
"status": "string"
}
'{
"ok": true,
"count": 0,
"page": 0,
"page_size": 0,
"total_pages": 0,
"sessions": [
{
"session_id": "string",
"tenant_id": "string",
"user_id": "string",
"status": "string",
"total_turns": 0,
"total_tokens": 0,
"created_at": "2026-03-31T12:00:00.000Z",
"ended_at": "2026-03-31T12:00:00.000Z"
}
]
}curl --request POST \
--url https://api.svantic.com/sessions/get \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"page_size": 25,
"status": "string"
}
'{
"ok": true,
"count": 0,
"page": 0,
"page_size": 0,
"total_pages": 0,
"sessions": [
{
"session_id": "string",
"tenant_id": "string",
"user_id": "string",
"status": "string",
"total_turns": 0,
"total_tokens": 0,
"created_at": "2026-03-31T12:00:00.000Z",
"ended_at": "2026-03-31T12:00:00.000Z"
}
]
}