v1

latestOpenAPI 3.0.02026-07-176413.0 KB
Search

Search both professors and courses with a query string. This will match professors and courses which have the query string as a substring of their name.

get/search

Query parameters

querystring required
Example:CMSC13

The query to search for

limitinteger

Maximum number of records to return.

offsetinteger

Number of records to skip for pagination.

Response

Returns professors and courses matching the query

namestring required
slugstring required
type'professor' | 'course' required

Example response

[
  {
    "name": "CMSC131",
    "slug": "CMSC131",
    "type": "course"
  }
]