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
}返回分页后的 AI 助手对话历史
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 参数对结果进行分页。当 hasMore 为 true 时继续获取。
dateFrom 和 dateTo 参数按日期范围过滤会话。
ISO 8601 或 YYYY-MM-DD 格式的日期
"2024-01-01"
采用 ISO 8601 或 YYYY-MM-DD 格式的日期
"2024-01-01"
每页返回的最大结果数量
1 <= x <= 1000分页游标(ULID 格式)
此页面对您有帮助吗?