v1
latestOpenAPI 3.0.02026-07-176413.0 KBGrades
Get grades for a course, a professor, or both. If by course, returns all of the grades available by section.
<aside class="notice"> At least one of <code>course</code> and <code>professor</code> is required. </aside>get/grades
Query parameters
coursestring
Example:MATH140
Show only grades for the given course.
professorstring
Example:Jon Snow
Show only grades for the given professor.
semesterstring
Example:202001
Show only grades for the given semester. Semester should be provided as the year followed by the semester code. 01 means Spring and 08 means Fall. For example, 202001 means Spring 2020. Default: all semesters
sectionstring
Example:0101
Show only grades for the given section. Default: all sections
Response
Returns grades matching query
Example response
[
{
"course": "MATH140",
"professor": "Jon Snow",
"semester": "202001",
"section": "0101",
"A+": 1,
"A": 1,
"A-": 1,
"B+": 1,
"B": 1,
"B-": 1,
"C+": 1,
"C": 1,
"C-": 1,
"D+": 1,
"D": 1,
"D-": 1,
"F": 1,
"W": 1,
"Other": 1
}
]