API Documentation
Quiz Submissions Multiplayer
Quiz Submissions Singleplayer
Share
Documents
Admin
Analyze tags
Analyze tags
POST
/
api
/
v1
/
admin
/
tags
/
analyze
Copy
curl --request POST \
--url http://localhost:8787/api/v1/admin/tags/analyze \
--header 'Content-Type: application/json' \
--data '{
"quizId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "singleplayer"
}'
Copy
{
"success": true,
"quizId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tags": [
"<string>"
],
"categories": [
"<string>"
]
}
Body
application/json
Response
200 - application/json
Tags analyzed successfully
The response is of type object
.
Copy
curl --request POST \
--url http://localhost:8787/api/v1/admin/tags/analyze \
--header 'Content-Type: application/json' \
--data '{
"quizId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "singleplayer"
}'
Copy
{
"success": true,
"quizId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tags": [
"<string>"
],
"categories": [
"<string>"
]
}
Assistant
Responses are generated using AI and may contain mistakes.