List all responses with pagination
Retrieves a paginated list of all agent responses for the authenticated user.
Documentation Index
Fetch the complete documentation index at: https://docs.mka1.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.
Headers
Optional external end-user identifier forwarded by the API gateway.
Query Parameters
A response ID to use as a cursor for pagination. Returns responses that come after this ID in the list. Used for cursor-based pagination to fetch subsequent pages.
"resp_abc123"
A response ID to use as a cursor for pagination. Returns responses that come before this ID in the list. Used for cursor-based pagination to fetch previous pages.
"resp_xyz789"
The maximum number of responses to return per page. Must be between 1 and 100. Defaults to 20 items.
1 <= x <= 10025
The order to return the responses in by creation date. 'asc' returns oldest responses first, 'desc' returns newest responses first. Defaults to 'desc' (newest first).
asc, desc "desc"
Response
Paginated list of responses for the authenticated user.
Paginated list object containing responses with cursor-based pagination metadata.
The object type, always 'list' for paginated list responses.
Array of response objects. Each response contains its status, model, input/output, tool usage logs, metadata, and completion information.
Indicates whether there are more responses available beyond the current page. True if additional pages exist, false otherwise.
The ID of the first response in the current page. Used as a reference point for pagination.
The ID of the last response in the current page. Used as a cursor for fetching the next page.