Skip to main content
GET
Python (SDK)

Authorizations

Authorization
string
header
required

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

X-On-Behalf-Of
string

Optional external end-user identifier forwarded by the API gateway.

Query Parameters

after
string

A request ID to use as a cursor for pagination. Returns feedback entries that come after this ID in the list. If the ID no longer resolves to a request visible to the caller (for example, the underlying response was deleted), the request fails with 400; restart pagination from the first page.

limit
integer
default:20

The maximum number of feedback entries to return per page. Must be between 1 and 100. Defaults to 20 items.

Required range: 1 <= x <= 100
order
enum<string>
default:desc

The order to return feedback entries in by creation date of the underlying request. 'asc' returns oldest first, 'desc' returns newest first. Defaults to 'desc' (newest first).

Available options:
asc,
desc
rating
enum<string>

Only return feedback entries with this rating. Omit to return entries with any rating.

Available options:
thumbs_up,
thumbs_down

Response

200 - application/json

OK

Paginated list object containing feedback entries with cursor-based pagination metadata.

object
any
required

The object type, always 'list' for paginated list responses.

data
object[]
required

Array of feedback entries ordered by creation date of the underlying request.

has_more
boolean
required

Indicates whether there are more feedback entries available beyond the current page. True if additional pages exist.

first_id
string

The ID of the first feedback entry in the current page. Used as a reference point for pagination.

last_id
string

The ID of the last feedback entry in the current page. Used as a cursor for fetching the next page.