Authentication
K12
- Handwritten Gen Evaluation
- Handwritten Exam Evaluation
- Exam Paper
- Model Answer Sheet
- Student Answer Sheet
- Result & Publishing
- Feedbacks
- Generic API
- Embeddable UI
- Content Generation
- Assignment Evaluation
Assessment Rubrics
- Rubrics
Standardized Language Exams
- Embeddable UI
- TOEFL Evaluation
- IELTS Evaluation
GET - Final Result
The API retrieves the finalized scores and detailed performance breakdown for a student’s exam. This includes:
- Exam-level metadata (exam name, subject, total marks, etc.).
- Section-wise summaries (marks distribution, instructions).
- Detailed answers with associated feedback, model answers, and step-wise marking.
Scenarios:
-
Retrieving Finalized Scores After Exam Results Are Published:
- After the exam results are finalized and published, the teacher or administrator retrieves the finalized scores for a student.
- The API provides:
- Exam-Level Metadata: Information such as exam name, subject, total marks, and any other relevant details.
- Section-Wise Summaries: Marks distribution, section-specific instructions, and total allocated marks for each section.
- Detailed Breakdown: Student’s answers, model answers, step-wise marking, and feedback.
- Outcome:
- The finalized scores provide a comprehensive overview of the student’s performance, which can be shared with students and used for reporting purposes.
-
Reviewing Detailed Feedback After Exam Results Are Finalized:
- A teacher uses the API to review the student’s finalized scores, including step-wise marking, feedback, and model answers.
- Outcome:
- Teachers can analyze student responses in comparison to model answers, providing feedback and personalized academic counseling to help students identify strengths and areas for improvement.
curl --request GET \
--url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/{examId}/answer-sheet/{ansSheetId}/get-final-result/ \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"publishedDate": "2024-12-26 09:58:30",
"data": {
"id": "4340132f-50fa-4877-9ffa-e9b7ee59d51f",
"examName": "CBSE 10 – Mock Test",
"subjectName": "Science",
"totalMarks": 80,
"obtainedMarks": 45,
"questionMarkSumMismatch": false,
"modelAnswerMarkSumMismatch": false,
"overallDuration": "180",
"overallInstruction": "1. All questions would be compulsory. However, an internal choice of approximately 33% would be provided. 50% marks are to be allotted to competency-based questions. 2. Section A would have 16 simple/complex MCQs and 04 Assertion-Reasoning type questions carrying 1 mark each. 3. Section B would have 6 Short Answer (SA) type questions carrying 02 marks each. 4. Section C would have 7 Short Answer (SA) type questions carrying 03 marks each. 5. Section D would have 3 Long Answer (SA) type questions carrying 05 marks each. 6. Section E would have 3 source based/case based/passage based/integrated units of assessment (04 marks each) with sub-parts of the values of 1/2/3 marks.",
"sections": [
{
"id": "ef66afc6-d923-43c6-b2d2-e29814306214",
"sectionName": "SECTION A",
"duration": null,
"instruction": null,
"totalMarks": 20,
"obtainedMarks": 13,
"parentQuestions": [
{
"id": "fcb22595-c36a-4ddf-b9d3-00ba6d2ea466",
"text": "Identify the option that indicates the correct enzyme that is secreted in location i, ii and iii.",
"marks": 1,
"questionNumber": "Q1",
"diagramDescription": null,
"questionType": "MCQ",
"questions": [
{
"id": "226986d3-95e4-4ed7-aaa4-3e7054f9bc5b",
"text": "(a) (i)Lipase, (ii) trypsin (iii) pepsin (b) (i) amylase, (ii) pepsin, (iii) trypsin (c) (i) trypsin, (ii) amylase, (iii) carboxylase (d) (i) permease (ii) carboxylase (iii) oxidase",
"marks": 1,
"isApproved": false,
"questionNumber": "",
"supportingText": "MCQ",
"modelAnswer": {
"id": "57837640-c695-44a5-9667-9cfb8bafebf1",
"answerText": "",
"stepMarking": [
{
"marksplit": 1,
"step_wise_answer": "(b) (i) amylase, (ii) pepsin, (iii) trypsin",
"modelanswer_diagram_description": ""
}
]
},
"answer": [
{
"id": "f819bfd2-8aaa-42df-bd18-23cb989b2d16",
"answerText": "(b) (i) amylase , (ii) pepsin, (iii) Trypsin",
"marks": 1,
"isApproved": false,
"diagramDescription": null,
"aiFeedbacks": [
{
"feedback": "The student has provided the correct answer, demonstrating a clear understanding of the enzymes associated with the specified locations. Great job!",
"student_text": "(b) (i) amylase , (ii) pepsin, (iii) Trypsin",
"justification": "The student's answer matches the model answer exactly, indicating that they have correctly identified the enzymes for each location as per the question requirements.",
"marks_deducted": "0",
"room_for_improvement": "None, as the answer is correct and complete."
}
],
"teacherFeedback": "The student has provided the correct answer, demonstrating a clear understanding of the enzymes associated with the specified locations. Great job!"
}
]
}
]
}
]
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
Status of the response
"success"
Date and time when the final scores were published
"2024-12-26 09:58:30"
The final scores for the answer sheet
Unique identifier for the exam.
"4340132f-50fa-4877-9ffa-e9b7ee59d51f"
Name of the exam.
"CBSE 10 – Mock Test"
Name of the subject.
"Science"
Total marks for the exam.
80
Marks obtained by the student.
45
Flag to indicate if the sum of the marks of the questions is not equal to the total marks of the exam
false
Flag to indicate if the sum of the marks of the model answers is not equal to the total marks of the exam
false
Total duration of the exam.
"180"
General instructions for the exam.
"1. All questions would be compulsory. However, an internal choice of approximately 33% would be provided. 50% marks are to be allotted to competency-based questions. 2. Section A would have 16 simple/complex MCQs and 04 Assertion-Reasoning type questions carrying 1 mark each. 3. Section B would have 6 Short Answer (SA) type questions carrying 02 marks each. 4. Section C would have 7 Short Answer (SA) type questions carrying 03 marks each. 5. Section D would have 3 Long Answer (SA) type questions carrying 05 marks each. 6. Section E would have 3 source based/case based/passage based/integrated units of assessment (04 marks each) with sub-parts of the values of 1/2/3 marks."
List of sections in the exam.
Unique identifier for the section.
"ef66afc6-d923-43c6-b2d2-e29814306214"
Name of the section.
"SECTION A"
Duration of the section.
null
Instructions for the section.
null
Total marks for the section.
20
Marks obtained by the student in the section.
13
List of parent questions in the section.
Unique identifier for the parent question.
"fcb22595-c36a-4ddf-b9d3-00ba6d2ea466"
Text of the parent question.
"Identify the option that indicates the correct enzyme that is secreted in location i, ii and iii."
Marks assigned to the parent question.
1
Number of the parent question.
"Q1"
Description of the diagram associated with the parent question.
null
Type of the parent question.
"MCQ"
"226986d3-95e4-4ed7-aaa4-3e7054f9bc5b"
"(a) (i)Lipase, (ii) trypsin (iii) pepsin (b) (i) amylase, (ii) pepsin, (iii) trypsin (c) (i) trypsin, (ii) amylase, (iii) carboxylase (d) (i) permease (ii) carboxylase (iii) oxidase"
1
false
""
"MCQ"
curl --request GET \
--url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/{examId}/answer-sheet/{ansSheetId}/get-final-result/ \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"publishedDate": "2024-12-26 09:58:30",
"data": {
"id": "4340132f-50fa-4877-9ffa-e9b7ee59d51f",
"examName": "CBSE 10 – Mock Test",
"subjectName": "Science",
"totalMarks": 80,
"obtainedMarks": 45,
"questionMarkSumMismatch": false,
"modelAnswerMarkSumMismatch": false,
"overallDuration": "180",
"overallInstruction": "1. All questions would be compulsory. However, an internal choice of approximately 33% would be provided. 50% marks are to be allotted to competency-based questions. 2. Section A would have 16 simple/complex MCQs and 04 Assertion-Reasoning type questions carrying 1 mark each. 3. Section B would have 6 Short Answer (SA) type questions carrying 02 marks each. 4. Section C would have 7 Short Answer (SA) type questions carrying 03 marks each. 5. Section D would have 3 Long Answer (SA) type questions carrying 05 marks each. 6. Section E would have 3 source based/case based/passage based/integrated units of assessment (04 marks each) with sub-parts of the values of 1/2/3 marks.",
"sections": [
{
"id": "ef66afc6-d923-43c6-b2d2-e29814306214",
"sectionName": "SECTION A",
"duration": null,
"instruction": null,
"totalMarks": 20,
"obtainedMarks": 13,
"parentQuestions": [
{
"id": "fcb22595-c36a-4ddf-b9d3-00ba6d2ea466",
"text": "Identify the option that indicates the correct enzyme that is secreted in location i, ii and iii.",
"marks": 1,
"questionNumber": "Q1",
"diagramDescription": null,
"questionType": "MCQ",
"questions": [
{
"id": "226986d3-95e4-4ed7-aaa4-3e7054f9bc5b",
"text": "(a) (i)Lipase, (ii) trypsin (iii) pepsin (b) (i) amylase, (ii) pepsin, (iii) trypsin (c) (i) trypsin, (ii) amylase, (iii) carboxylase (d) (i) permease (ii) carboxylase (iii) oxidase",
"marks": 1,
"isApproved": false,
"questionNumber": "",
"supportingText": "MCQ",
"modelAnswer": {
"id": "57837640-c695-44a5-9667-9cfb8bafebf1",
"answerText": "",
"stepMarking": [
{
"marksplit": 1,
"step_wise_answer": "(b) (i) amylase, (ii) pepsin, (iii) trypsin",
"modelanswer_diagram_description": ""
}
]
},
"answer": [
{
"id": "f819bfd2-8aaa-42df-bd18-23cb989b2d16",
"answerText": "(b) (i) amylase , (ii) pepsin, (iii) Trypsin",
"marks": 1,
"isApproved": false,
"diagramDescription": null,
"aiFeedbacks": [
{
"feedback": "The student has provided the correct answer, demonstrating a clear understanding of the enzymes associated with the specified locations. Great job!",
"student_text": "(b) (i) amylase , (ii) pepsin, (iii) Trypsin",
"justification": "The student's answer matches the model answer exactly, indicating that they have correctly identified the enzymes for each location as per the question requirements.",
"marks_deducted": "0",
"room_for_improvement": "None, as the answer is correct and complete."
}
],
"teacherFeedback": "The student has provided the correct answer, demonstrating a clear understanding of the enzymes associated with the specified locations. Great job!"
}
]
}
]
}
]
}
]
}
}