API Documentation
Quiz Submissions Multiplayer
Quiz Submissions Singleplayer
Share
Documents
User Analysis
Get user's top categories
Retrieve the most frequent categories for the authenticated user
GET
/
api
/
v1
/
analysis
/
top-categories
curl --request GET \
--url http://localhost:8787/api/v1/analysis/top-categories
{
"categories": [
{
"category": "<string>",
"count": 123
}
]
}
Response
200 - application/json
User's top categories
The response is of type object
.
curl --request GET \
--url http://localhost:8787/api/v1/analysis/top-categories
{
"categories": [
{
"category": "<string>",
"count": 123
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.