Assignment Understanding

Understand Assignments, Question Papers etc. Gets the details about questions and subquestions

Get started with Solvio's Assignment Understanding API easily by downloading the Postman Collection attached below. To learn more about Postman Collections click here.

Assignment Understanding

POST https://developer.trysolvio.ai/api/assignment/understanding

Get the details about assignment

Headers

NameTypeDescription

Authentication

string

Pass your token in the formart Bearer <TOKEN> Check out Authentication for more

Request Body

NameTypeDescription

src

string

The image in base64 encoded format like data:image/png;base64,iVBO...

{
    "requestId": "01ebbe48...",
    "imagePath": "https://cdn-developer.trysolvio.ai/prod/assignment/01ebbe48...",
    "questions": [
        {
            "index": {
                "value": "1",
                "text": "1"
            },
            "marks": "",
            "text": "Where are antibodies found ? Plasma of the blood ",
            "box": {
                "x0": 70,
                "y0": 314,
                "x1": 419,
                "y1": 458
            },
            "questions": [
                {
                    "index": {
                        "value": "1",
                        "text": "a"
                    },
                    "marks": "",
                    "text": "Where are antibodies found ? Plasma of the blood ",
                    "box": {
                        "x0": 70,
                        "y0": 314,
                        "x1": 419,
                        "y1": 458
                    },
                }
                ...
            ]
        },
        ...
    ]
}

Last updated