GET
/
evaluation-platform
/
v1
/
exam
curl --request GET \
  --url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 78,
  "pageSize": 10,
  "showing": "Page 1 of 8",
  "next": "{{base_url}}/evaluation-platform/v1/exam/?page=2",
  "previous": null,
  "data": [
    {
      "id": "4340132f-50fa-4877-9ffa-e9b7ee59d51f",
      "examName": "CBSE 10 – Mock Test",
      "overallDuration": "180",
      "grade": 10,
      "classSection": null,
      "subject": 1,
      "examType": 1,
      "examSet": "N/A",
      "documents": [
        {
          "id": "18eb7110-d280-451d-8437-e54fe5f12dac",
          "status": 2,
          "pageNo": null,
          "uploadTime": "2025-01-04T13:46:59.825883Z",
          "url": "https://cgfblob.blob.core.windows.net/ielts/evaluation/CBSE_10_Science_-_Mock_Test.pdf.pdf",
          "fileType": 1
        }
      ],
      "createdAt": "2025-01-04T13:45:57.743446Z",
      "modifiedAt": "2025-01-04T13:54:29.506106Z",
      "examDate": "2024-01-09",
      "isFinalPublish": false,
      "isProvisionalPublished": false
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Successful Response
count
integer

Total number of exams available.

Example:

78

pageSize
integer

Number of items displayed per page.

Example:

10

showing
string

Current page display information.

Example:

"Page 1 of 8"

next
string | null

URL for the next page of results.

Example:

"{{base_url}}/evaluation-platform/v1/exam/?page=2"

previous
string | null

URL for the previous page of results.

Example:

null

data
object[]

List of exams.