Sessions
List Sessions
List sessions for the authenticated project.
List responses intentionally omit per-session presigned URLs
(screenshot_url, recording_urls). Each presign is a synchronous boto3
SigV4 signing call that holds the GIL and blocks the event loop. With
page_size up to 100 this CPU-pegs the worker and starves the DB pool,
cascading into pool exhaustion across the fleet. Clients should fetch
these URLs on demand via GET /api/v3/sessions/{id}, which signs exactly
one screenshot URL plus any recording URLs for a single session.
GET
List Sessions
Authorizations
Query Parameters
Page number (1-indexed).
Required range:
x >= 1Number of sessions per page (max 100).
Required range:
1 <= x <= 100