cURL
curl --request GET \ --url https://app.quizrise.com/api/v1/question/{questionId} \ --header 'Authorization: Bearer <token>'
{ "status": "success", "question": { "id": "<string>", "text": "<string>", "type": "<string>", "difficulty": "<string>", "explanation": "<string>", "language": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "choices": [ { "id": "<string>", "text": "<string>", "isCorrect": true } ] } }
Retrieve details of a specific question including its text and answer options
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the question to retrieve
Question retrieved successfully
success
Show child attributes