Skip to main content
GET
/
evaluation-platform
/
v1
/
exam
/
{examId}
/
questions
cURL
curl --request GET \
  --url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/{examId}/questions/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "3fb48c7c-4437-4673-9cc2-218fcdb2f8c7",
  "examName": "CBSE 10 – Mock Test",
  "subjectName": "Science",
  "totalMarks": 80,
  "obtainedMarks": 0,
  "questionMarkSumMismatch": 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": 0,
      "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",
          "questionType": null,
          "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": "",
              "diagramDescription": null,
              "supportingText": "MCQ"
            }
          ]
        }
      ]
    }
  ]
}

When to use this endpoint

Use this endpoint after the exam paper has been processed and you want to inspect or review the structured exam blueprint:
  • Teacher dashboards that show section-wise breakdowns of an exam.
  • Internal QA tools that validate marks distribution and instructions before publishing.
  • Admin flows that compare the AI‑extracted structure against original PDFs or model answers.
It is read‑only and pairs naturally with the exam creation and evaluation APIs.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

examId
string
required
Example:

"4340132f-50fa-4877-9ffa-e9b7ee59d51f"

Response

Success

id
string

Unique identifier of the exam

Example:

"3fb48c7c-4437-4673-9cc2-218fcdb2f8c7"

examName
string

Exam Name

Example:

"CBSE 10 – Mock Test"

subjectName
string

Subject Name

Example:

"Science"

totalMarks
number<float>

Total marks of the exam

Example:

80

obtainedMarks
number<float>

Marks obtained by the student

Example:

45

questionMarkSumMismatch
boolean

Flag to indicate if the sum of the marks of the questions is not equal to the total marks of the exam

Example:

false

overallDuration
string

Duration of the exam

Example:

"180"

overallInstruction
string

Instruction given for the exam

Example:

"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
object[]

List of sections in the exam