v1

latestOpenAPI 3.0.02026-07-176413.0 KB
Professors

Get all professors, in alphabetical order

get/professors

Query parameters

type'professor' | 'ta'

Show only reviews for professors or teaching assistants. Default: show both.

reviewsboolean

Show reviews for the professors.

limitinteger

Maximum number of records to return.

offsetinteger

Number of records to skip for pagination.

Response

Returns professors matching query

namestring required
slugstring required
type'professor' | 'ta' required
coursesstring[] required
average_ratingnumber required

Example response

[
  {
    "name": "Jon Snow",
    "slug": "snow",
    "type": "professor",
    "courses": [
      "MATH140"
    ],
    "average_rating": 4.125
  }
]