GET - List Exam
The GET /evaluation-platform/v1/exam API retrieves a paginated list of exams, providing detailed information about each exam, including associated documents, grades, subjects, and other metadata.
Scenarios:
- Displaying Exams on an Admin Dashboard: Admins can use this API to fetch and display a list of exams with relevant details for monitoring and management.
- Filtering Exams by Grade or Subject: Teachers can retrieve exams filtered by specific criteria like grade or subject to streamline their workflow.
- Exam Status Monitoring: Coordinators can use this API to track the status of exams (e.g., in progress, completed) and act accordingly.
- Populating a Student Portal: Students can view available exams based on their class and subject by leveraging the data retrieved from this API.
GET
Retrieve Exams
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Successful Response
Total number of exams available.
Example:
78
Number of items displayed per page.
Example:
10
Current page display information.
Example:
"Page 1 of 8"
URL for the next page of results.
Example:
"{{base_url}}/evaluation-platform/v1/exam/?page=2"
URL for the previous page of results.
Example:
null
List of exams.
Previous
GET - QuestionsThe Get Questions API retrieves detailed information about the sections, parent questions, and sub-questions of a specific exam. It includes metadata such as instructions, marks, and approval statuses.
**Scenarios:**
1. **Reviewing AI-Extracted Exam Structure:**
- A teacher uses this API to review the structured format of an exam after AI processes uploaded documents (triggered by the PATCH Exam API).
- The API retrieves:
- Sections: Names or labels for different parts of the exam (e.g., 'Section A').
- Parent Questions: Main questions in the exam.
- Sub-Questions: Detailed breakdowns of multi-part questions.
- Metadata: Instructions, marks allocation, and approval statuses for each question.
- **Outcome:** The teacher reviews and finalizes the AI-extracted structure to ensure accuracy and completeness.
<Tip> Want to receive automatic notifications when exam questions are processed? Set up webhooks to get real-time updates on question extraction. Check out the [Webhooks](/api-reference/endpoint/webhook/v1-get-webhook-template). </Tip>
Next
Retrieve Exams