List session summaries
Use limit and offset to page through the results. The response includes
message, trace-event, and token counts per session, but not the messages or
trace details themselves. Use the conversation-history endpoint for messages and
the traces endpoint for execution detail.
Authorizations
Project-bound API key. Do not send an Authorization header with this API.
Path Parameters
Project identifier bound to the API key.
1Query Parameters
Inclusive ISO 8601 start timestamp. Required with toDate unless sessionIds is supplied.
Exclusive ISO 8601 end timestamp. Required with fromDate unless sessionIds is supplied.
Filter to specific sessions. Pass up to 10,000 session IDs, comma-separated or by repeating the parameter. Can be used instead of a date range.
100001Filter by how the session was resolved — whether the agent handled it or it went to a human. Pass one or more values, comma-separated or by repeating the parameter, up to 100.
Values are case-sensitive and anything else is rejected with 400 INVALID_CONTAINMENT_TYPE.
100contained, contained_resolved, contained_partial, contained_unresolved, escalated, abandoned Filter by environment. Pass one or more values, comma-separated or by repeating the parameter.
Values are case-sensitive and anything else is rejected with 400 INVALID_ENVIRONMENT. Use dev, not development or prod — the service
handles both stored spellings for you behind the scenes, but only accepts
the four values below as input.
4dev, staging, production, working-copy 128Filter to sessions belonging to specific end users, using the identity recorded for them on the channel. Pass up to 100 values, comma-separated or by repeating the parameter.
1001Filter by the channel the conversation came in on. Pass one or more values, comma-separated or by repeating the parameter, up to 50 distinct channels of 128 characters each.
This endpoint understands shorthand. Values are grouped into channel
families before matching, and each family also matches its older stored
spellings, so channel=web, channel=sdk_web, and channel=web_chat all
return the same web-chat sessions. The groupings are listed under
x-alias-groups, and those alias spellings are accepted here even though
they are not in the enum — the enum is kept identical across all the public
analytics endpoints so there is one channel list to learn.
Because of that grouping, asking for one specific voice channel such as
channel=voice_pipeline returns all voice sessions, not just that
transport. Use the traces endpoint if you need to distinguish them.
Not restricted to a fixed list, so an unrecognised value returns no results rather than an error.
50http_async, slack, line, msteams, whatsapp, messenger, instagram, twilio_sms, zendesk, telegram, genesys, genesys_open_messaging, ai4w, kore_agent_assist, email, voice_vxml, korevg, audiocodes, genesys_audio_connector, voice_pipeline, voice_realtime, voice, voice_twilio, voice_livekit, ag_ui, a2a, sdk_websocket, web_debug, web_chat, api, http 128Filter by a custom dimension recorded against the session. Replace key with
the dimension name — for example traceDimensions[accountTier]=gold. Repeat
with different keys to require all of them. Values match exactly. Remember to
URL-encode the brackets if your HTTP client does not do it for you.
Filter by the session's current state. Pass a single value; if you repeat the parameter only the first value is used.
Case-sensitive, and anything else is rejected with 400 INVALID_STATUS.
Note that sessions can be stored with a status of failed, but failed is
not accepted as a filter value here.
active, idle, ended, completed, escalated, abandoned, archived How many sessions to return. A page may come back with fewer than requested
so the response stays within the 1 MiB size limit — check hasMore rather
than assuming a short page is the last one.
1 <= x <= 10000x >= 0Response
Session page returned successfully.
Always true on a successful response.
The sessions on this page.
Total number of sessions matching your filters, across all pages.
x >= 0The offset applied to this response.
x >= 0The page size applied to this response.
1 <= x <= 10000Whether more pages are available after this one.