Skip to main content
If you are already using OMR software for conducting exams, we provide testpaper solutions in both json and csv format. You can feed these solutions into OMR software for testpaper evaluation.

Solution in JSON format

  1. Enable Developer API in your account - https://app.examin8.com/developer_api
  2. Create access token for your account. Make sure to store this token securely.
  3. Create online test in examin8 and enable API access for individual testpaper (User testpapers > testpapaper card - Actions > Enable API Access). Pasted 1761733318826 Pn
  4. Generate OMR sheet for this testpaper (based on number of questions) using your OMR software.
  5. Conduct exams using OMR sheet.
  6. For feeding solution for this testpaper into your OMR software, use below APIs.
GET Request:
Endpoint: https://app.examin8.com
Path: /v1/test-generator/testpaper/<testpaper_id>/solution/

Headers:
Content-type: application/json
Authorization: Bearer <api_key>
Response status is 200 when everything is good and a valid response is sent. In all other scenario, status codes are 4XX or 5XX. In error scenario, the response error structure is:
{
   "error": {
           "type": "invalid_request_error",
           "message": "You don’t have permission to perform this action."
    }
}
Normal response contains question number, correct answer, marks and other details:
{
  "testpaper_id": 1234,
  "testpaper_name": "",
  "module": "Entrance Exam",
  "course": "NEET-UG",
  "subject": "",
  "time_allowed": 200,
  "instructions": "instructions",
  "sections": [
    {
      "name": "PHYSICS (Section-A)",
      "questions": [
        {
          "question_no": 1,
          "subject_name": "Physics",
          "chapter_name": "Units and Measurements",
          "topic_name": "Significant Figures",
          "difficulty_level": "Analysing and Evaluating",
          "positive_marks": 4,
          "negative_marks": -1,
          "number_of_options": 4,
          "correct_answer": 3
        }
      ]
    },
    {
      "name": "PHYSICS (Section-B)",
      "questions": [
        {
          "question_no": 36,
          "subject_name": "Physics",
          "chapter_name": "Work Energy and Power",
          "topic_name": "Colllisions",
          "difficulty_level": "Remembering",
          "positive_marks": 4,
          "negative_marks": -1,
          "number_of_options": 4,
          "correct_answer": 4
        }
      ]
    }
  ]
}

Solution in CSV format

  1. Access https://app.examin8.com/user-testpapers
  2. Got the specific testpaper card.
  3. Click Actions button in specific testpaper and select Generate Answerky option. This will generate Answer key in CSV format. Pasted 1761733419293 Pn