cURL
curl --request GET \ --url https://app.quizrise.com/api/v1/tags/{tagId}/quizzes \ --header 'Authorization: Bearer <token>'
{ "status": "success", "message": "Quizzes fetched successfully", "quizzes": [ { "id": "<string>", "title": "<string>", "description": "<string>", "slug": "<string>", "visibility": "<string>", "creator": { "name": "<string>", "avatar": "<string>" }, "tags": [ { "id": 123, "tag": "<string>" } ], "questionCount": 123, "flashcardCount": 123, "quizAttemptCount": 123 } ], "pagination": { "currentPage": 123, "totalPages": 123, "totalItems": 123, "itemsPerPage": 123, "hasNextPage": true, "hasPreviousPage": true } }
Get all quizzes associated with a specific tag
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the tag
Page number for pagination
x >= 1
Quizzes fetched successfully
success
"Quizzes fetched successfully"
Show child attributes