GET
/
quiz
/
all
curl --request GET \
  --url https://app.quizrise.com/api/v1/quiz/all \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "quizzes": [
    {
      "id": "<string>",
      "title": "<string>",
      "description": "<string>",
      "slug": "<string>",
      "visibility": "<string>",
      "creator": {
        "name": "<string>",
        "avatar": "<string>"
      },
      "tags": [
        "<string>"
      ],
      "questionCount": 123,
      "flashcardCount": 123,
      "quizAttemptCount": 123
    }
  ],
  "pagination": {
    "currentPage": 123,
    "totalPages": 123,
    "totalItems": 123,
    "itemsPerPage": 123,
    "hasNextPage": true,
    "hasPreviousPage": true
  }
}

Authorizations

Authorization
string
headerrequired

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

Query Parameters

page
integer
default: 1

Page number for pagination

Required range: x > 1

Response

200 - application/json
status
enum<string>
Available options:
success
quizzes
object[]
pagination
object