Check floating-session usage and which user IDs are in an active 5-minute window.
UseDocumentation Index
Fetch the complete documentation index at: https://docs.voltai.ai/llms.txt
Use this file to discover all available pages before exploring further.
GET /chat/sessions/ to inspect how many floating sessions your organization is using. This matches the same 5-minute sliding window used for floating-seat limits on /chat/query/: after a user’s first question, that identity counts as one session until five minutes pass with no new messages. Additional questions in that window do not open extra sessions.
Send your API key in the X-API-KEY header. No request body or query parameters are required.
total_sessions is the maximum number of floating sessions allowed for the organization. It is null when no limit is configured (unlimited).used_sessions is how many distinct user_id values have at least one qualifying conversation in the last five minutes (the same rule as floating-seat counting).available_sessions is the remaining capacity (total_sessions - used_sessions). It is null when unlimited.active_user_ids lists those identities (the same user_id strings you send on /chat/query/).Session status
Floating-session usage for the organization. A session is active for five minutes after a user's first qualifying message; further messages in that window still count as one session per user identity.
Maximum floating sessions allowed for this organization. null if unlimited.
Number of distinct user identities with qualifying chat activity in the last five minutes.
Remaining floating sessions (total_sessions - used_sessions). null if unlimited.
Sorted list of user_id values that have an active floating session (recent activity in the five-minute window).