List Analyses

Returns a paginated list of video analyses for the authenticated user. **Pagination** is cursor-based: - Pass `limit` to control how many records are returned per page (1–100, default 20). - When there are more results, the response includes a `nextCursor` string. - Pass that value as the `cursor` query parameter on your next request to fetch the next page. - A `null` `nextCursor` means you have reached the last page. Each item includes summary-level scores only. Fetch `GET /api/v1/full-analysis/{sessionId}` for the full result payload of a specific analysis.

Authentication

AuthorizationBearer

Your API key (e.g. ng_xxx…). The Try it and generated code send it as Authorization: Bearer <key>. Alternatively use the X-API-Key header with the raw key.

Query parameters

limitintegerOptional1-100Defaults to 20
Maximum number of records to return per page.
cursorstringOptional

Opaque pagination cursor returned in the nextCursor field of a previous response. Omit on the first request.

Response

Paginated list of analyses for the authenticated user.
itemslist of objects
The analyses for this page, sorted newest first.
nextCursorstring or null

Opaque cursor to pass as the cursor query parameter on your next request. null when this is the last page.

Errors

400
Bad Request Error
401
Unauthorized Error
500
Internal Server Error