GET
/
students
/
{id}
cURL
curl --request GET \
  --url http://sandbox.mintlify.com/students/{id} \
  --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.

Path Parameters

id
string
required

5-digit student ID of the student you wish to retrieve.

Required string length: 5
Example:

"01234"

Response

200
application/json

Response includes information on the specified student.

The response is of type object.