For the complete documentation index, see llms.txt. This page is also available as Markdown.

GET /gammas/{gammaId}/comments

Returns comment threads on a Gamma, cursor-paginated. Supports an updatedSince filter for efficient delta polling.

List comment threads on a single Gamma with cursor pagination.

List comments on a Gamma

get

Returns comment threads on a Gamma, cursor-paginated. Supports an updatedSince filter for efficient delta polling.

Authorizations
X-API-KEYstringRequired

API key for authentication

Path parameters
gammaIdstringRequired

The ID of the Gamma to list comments for

Query parameters
limitnumber · min: 1 · max: 50Optional

Maximum number of comments to return per page

Example: 20
afterstringOptional

Cursor for pagination (from previous response's nextCursor)

Example: eyJpZCI6IjEyMyJ9
updatedSincestringOptional

ISO-8601 timestamp cursor. When provided, only comment threads with activity (including new replies) after this timestamp are returned — enabling efficient delta polling.

Example: 2026-06-01T00:00:00.000Z
includeArchivedbooleanOptional

When true, archived (deleted) comments and replies are included in the response, each carrying an archived flag. Defaults to false.

Example: false
Responses
200

Comments retrieved successfully

application/json
hasMorebooleanRequired

Whether more results exist beyond this page

Example: true
nextCursorstring · nullableRequired

Cursor for fetching the next page (null if no more results)

Example: eyJpZCI6IjQ1NiJ9
get/v1.0/gammas/{gammaId}/comments

Requires comment-level access on the Gamma. Use limit (1–50) and after to paginate. Pass updatedSince (ISO-8601) to fetch only comment threads with activity (including new replies) after that timestamp. Set includeArchived to true to include archived (deleted) comments and replies.

Last updated

Was this helpful?