GET
/
ai
/
v1
/
board
/
{board_id}
/
grades
/
{grade_id}
/
subjects
List Subjects for Grade
curl --request GET \
  --url https://api-staging.crazygoldfish.com/ai/v1/board/{board_id}/grades/{grade_id}/subjects \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "English",
    "id": "99f5312d-48f6-4c5c-8141-2eeb88f16290"
  },
  {
    "name": "Mathematics",
    "id": "e3edf414-eb46-4fa3-b8fc-b2cd0c39266e"
  },
  {
    "name": "Hindi",
    "id": "e20dec7b-0577-4f13-a54b-8cbbddec126c"
  },
  {
    "name": "Science",
    "id": "6dd7ebda-1bc5-4c01-8649-372579189073"
  },
  {
    "name": "Social Science",
    "id": "5aeb9455-7058-4f07-a532-b72db708edb6"
  },
  {
    "name": "Health and Physical Education",
    "id": "1f3afbed-c93c-42cf-9228-733bd88fdcc0"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

board_id
string
required

Unique identifier of the board.

grade_id
string
required

Unique identifier of the grade.

Response

200
application/json

A list of subjects for the specified grade.

The response is of type object[].