GET
/
students
cURL
curl --request GET \
  --url http://sandbox.mintlify.com/students \
  --header 'Authorization: Bearer <token>'
[
  {
    "firstName": "John",
    "lastName": "Smith",
    "GPA": 3.95,
    "gradeLevel": 1,
    "attendanceStatus": "present",
    "id": "01234"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

gradeLevel
integer

Specify a grade level to retrieve a list of all students in that grade.

Required range: 1 <= x <= 12
Example:

3

Response

200
application/json

Returns a list of all students in the system and their associated information.

The response is of type object[].