curl --request GET \
--url https://api.mintlify.com/api/external/v1/analytics/{projectId}/assistant \
--header 'Authorization: Bearer <token>'{
"conversations": [
{
"id": "<string>",
"timestamp": "<string>",
"query": "<string>",
"response": "<string>",
"sources": [
{
"title": "<string>",
"url": "<string>"
}
],
"queryCategory": "<string>"
}
],
"nextCursor": "<string>",
"hasMore": true
}Returns paginated AI assistant conversation history
curl --request GET \
--url https://api.mintlify.com/api/external/v1/analytics/{projectId}/assistant \
--header 'Authorization: Bearer <token>'{
"conversations": [
{
"id": "<string>",
"timestamp": "<string>",
"query": "<string>",
"response": "<string>",
"sources": [
{
"title": "<string>",
"url": "<string>"
}
],
"queryCategory": "<string>"
}
],
"nextCursor": "<string>",
"hasMore": true
}cursor parameter returned in the response. Continue fetching while hasMore is true.
dateFrom and dateTo parameters.
The Authorization header expects a Bearer token. See the API authentication documentation for details on how to get your API key.
Date in ISO 8601 or YYYY-MM-DD format
"2024-01-01"
Date in ISO 8601 or YYYY-MM-DD format
"2024-01-01"
Max results per page
1 <= x <= 1000Pagination cursor (ULID format)
Conversation data with pagination
Was this page helpful?