cURL
curl --request GET \ --url https://app.quizrise.com/api/v1/quiz/{quizId} \ --header 'Authorization: Bearer <token>'
{ "status": "success", "quiz": { "id": "<string>", "title": "<string>", "description": "<string>", "slug": "<string>", "visibility": "<string>", "creator": { "name": "<string>", "avatar": "<string>" }, "tags": [ "<string>" ], "questionCount": 123, "flashcardCount": 123, "quizAttemptCount": 123 } }
Get detailed information about a specific quiz
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the quiz to retrieve
Quiz details retrieved successfully
success
Show child attributes