Documentation Index
Fetch the complete documentation index at: https://mintlify.com/everruns/everruns/llms.txt
Use this file to discover all available pages before exploring further.
GET /v1/sessions
Returns a paginated list of sessions in the organization.Query Parameters
Optional filter to return only sessions assigned to a specific agent.Without this parameter, returns all sessions in the organization.
Number of items to skip for pagination.
Maximum number of items to return per page. Maximum value is 100.
Response
Returns a paginated response with session objects.Array of
Session objects for the current page. Ordered by created_at DESC.Total count of sessions across all pages.
Current offset (echoed from request).
Current limit (echoed from request).
Session Object
Each session in thedata array contains:
The session’s public ID with the
session_ prefix.The ID of the agent assigned to this session.
The session title.
Tags associated with the session.
Model override for this session, if set.
Session-level capabilities (additive to agent capabilities).
Current session status:
started, active, or idle.Computed at read time by aggregating features from all active capabilities.
ISO 8601 timestamp when the session was created.
ISO 8601 timestamp when the session was last updated.
Examples
List all sessions
Filter by agent
Pagination
Notes
- Results are ordered by
created_at DESC(newest first) - Default pagination limit is 20 items per page
- Maximum pagination limit is 100 items per page
- Without
agent_idfilter, returns all sessions in the organization