Cursor-paginated list of all snapshots owned by the authenticated user
(independent of workspace existence).
Snapshots
List All Snapshots
List all snapshots across all workspaces for the authenticated user.
GET
Cursor-paginated list of all snapshots owned by the authenticated user
(independent of workspace existence).
Documentation Index
Fetch the complete documentation index at: https://docs.rigbox.dev/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Maximum items to return. Clamped to [1, MAX_LIMIT]. Default 50.
Deserialized leniently from a string: axum's Query (serde_urlencoded)
cannot coerce a flattened numeric field, so a struct that
#[serde(flatten)]s PageParams (e.g. ListAppsQuery) would otherwise
fail with "invalid type: string, expected u32" on ?max_results=50.
Required range:
x >= 0Opaque cursor returned by a prior call's next_cursor. Omit on the
first page.