cURL
curl --request GET \ --url https://app.quizrise.com/api/v1/quiz/{quizId}/questions \ --header 'Authorization: Bearer <token>'
{ "status": "success", "questions": [ { "id": "<string>", "text": "<string>", "type": "<string>", "difficulty": "<string>", "explanation": "<string>", "language": "<string>", "choices": [ { "id": "<string>", "text": "<string>", "isCorrect": true } ] } ], "pagination": { "currentPage": 123, "totalPages": 123, "totalItems": 123, "itemsPerPage": 123, "hasNextPage": true, "hasPreviousPage": true } }
Get all questions belonging to a specific quiz
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the quiz to retrieve questions for
The page number to retrieve
Questions retrieved successfully
success
Show child attributes