GET
/
quiz
/
{quizId}
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
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

quizId
string
required

The ID of the quiz to retrieve

Response

200
application/json
Quiz details retrieved successfully
status
enum<string>
Available options:
success
quiz
object