GET
/
quiz
/
{quizId}
/
stats
curl --request GET \
  --url https://app.quizrise.com/api/v1/quiz/{quizId}/stats \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "totalAttempts": 123,
    "totalFinishedAttempts": 123,
    "averageScore": 123,
    "averageCompletionTimeInSeconds": 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

Response

200
application/json
Successfully retrieved quiz stats
status
enum<string>
Available options:
success
message
string
data
object