---
title: "Get assistant conversations"
method: GET
path: "/v1/analytics/{projectId}/assistant"
tags: ["Analytics"]
---

# Get assistant conversations

`GET /v1/analytics/{projectId}/assistant`

Returns paginated AI assistant conversation history

Authenticate with an admin API key.

## Path parameters

- `projectId` string, required — Your project ID. Can be copied from the [API keys](https://app.mintlify.com/settings/organization/api-keys) page in your dashboard.

## Query parameters

- `dateFrom` string — Date in ISO 8601 or YYYY-MM-DD format
- `dateTo` 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.
- `limit` number — Max results per page
- `cursor` string, ulid — Pagination cursor (ULID format)

## Response `200`

Conversation data with pagination

- AssistantConversationsResponse
  - `conversations` object[], required — List of assistant conversations.
    - `id` string, required — Unique conversation identifier.
    - `timestamp` string, required — Timestamp when the conversation occurred.
    - `query` string, required — The user's question to the assistant.
    - `response` string, required — The assistant's response.
    - `sources` object[], required — Documentation pages referenced in the response.
      - `title` string, required — Title of the referenced documentation page.
      - `url` string, required — URL of the referenced documentation page.
    - `resolutionStatus` 'answered' | 'unanswered', required — Whether the assistant successfully answered the user's question. `unanswered` indicates the assistant could not provide a satisfactory answer based on the available documentation.
    - `queryCategory` unknown, required
    - `pageUrl` unknown, required
  - `nextCursor` unknown, required
  - `hasMore` boolean, required — Whether additional results are available beyond this page.

## Other responses

- `400` — Invalid query parameters
- `500` — Server error

---

[API](https://skmtc.dev/mcp-b/apis/mintlify-admin-api.md) · [All operations](https://skmtc.dev/mcp-b/apis/mintlify-admin-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/mcp-b/mintlify-admin-api/revisions/6165028f8792/schema)
