Files
mintlify__docs/api/analytics/assistant-conversations.mdx
Ethan Palm 3dc3852b7a SEO descriptions (#4028)
* Improve SEO descriptions across 47 pages

Curated descriptions from two bot-generated PRs (#3908, #3949),
selecting the best approach for each page:
- Added missing title and description frontmatter to 10 API reference pages
- Benefit-focused descriptions for integration pages (not implementation-heavy)
- Accurate REST-aligned titles for API endpoints (Export, List, Trigger, etc.)
- Expanded short descriptions to 50–160 character range throughout

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* copyedit

* Update custom-domain.mdx

* Fix analytics API page titles to match spec summaries

"Export" was inaccurate — spec uses "Get" for both endpoints.
Also updated descriptions to use "Retrieve" for consistency.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-04 16:46:28 -08:00

25 lines
981 B
Plaintext

---
title: "Get assistant conversations"
description: "Retrieve AI assistant conversation history including queries, responses, cited sources, and categories."
openapi: /analytics.openapi.json GET /v1/analytics/{projectId}/assistant
keywords: ["analytics", "assistant", "conversations", "export", "AI"]
---
## Usage
Use this endpoint to export AI assistant conversation history from your documentation. Each conversation includes the user query, assistant response, sources cited, and query category.
Paginate through results using the `cursor` parameter returned in the response. Continue fetching while `hasMore` is `true`.
## Filtering
Filter conversations by date range using `dateFrom` 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)