curl --request GET \
--url https://api.mintlify.com/api/external/v1/analytics/{projectId}/feedback \
--header 'Authorization: Bearer <token>'{
"feedback": [
{
"id": "<string>",
"path": "<string>",
"comment": "<string>",
"createdAt": "<string>",
"source": "code_snippet",
"status": "pending"
}
],
"nextCursor": "<string>",
"hasMore": true
}Returns paginated user feedback with optional filtering
curl --request GET \
--url https://api.mintlify.com/api/external/v1/analytics/{projectId}/feedback \
--header 'Authorization: Bearer <token>'{
"feedback": [
{
"id": "<string>",
"path": "<string>",
"comment": "<string>",
"createdAt": "<string>",
"source": "code_snippet",
"status": "pending"
}
],
"nextCursor": "<string>",
"hasMore": true
}cursor parameter returned in the response. Continue fetching while hasMore is true.
dateFrom and dateTo to limit results to a specific time periodcode_snippet or contextual feedback typespending, in_progress, resolved, or dismissedhelpful boolean and optional contact emailcode, filename, and lang fieldsThe 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"
Filter by feedback source
code_snippet, contextual Comma-separated list of statuses to filter by
Max results per page
1 <= x <= 100Pagination cursor
Feedback data with pagination
Was this page helpful?