cURL
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 } }
Get a list of all available quizzes with their basic information
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page number for pagination
x >= 1
Quizzes retrieved successfully
success
Show child attributes