cursor parameter returned in the response. Continue fetching while hasMore is true.
Filtering
Filter conversations by date range usingdateFrom and dateTo parameters.
Conversation data
Each conversation includes:- query: The user’s question
- response: The assistant’s answer
- sources: Pages referenced in the response, with title and URL
- queryCategory: Classification of the query type (if available)
Endpoint
Query Parameters
string
Date in ISO 8601 or YYYY-MM-DD format. Filter conversations that occurred on or after this date.
string
Date in ISO 8601 or YYYY-MM-DD format.
dateTo is an exclusive upper limit. Results include dates before, but not on, the specified date.number
default:"100"
Max results per page. Minimum: 1, Maximum: 1000.
string
Pagination cursor (ULID format) returned from a previous response.
Response
array
List of assistant conversations.
string
Cursor to retrieve the next page of results. Null if no more results.
boolean
Whether additional results are available beyond this page.
Authentication
This endpoint requires an admin API key (prefixed withmint_). Generate one on the API keys page in your dashboard.