Documentation
Search by Course ID

Search by Course ID

Returns a CourseObject for the given course ID.

Searches the CSUF course catalog for a course with the given ID.

This endpoint will likely not get used much, but it's here for completeness. The only place I found with course IDs was in the <a> tags of the course catalog search results page.

Endpoint

GET /courses?course_id={course_id}

Parameters

NameDescriptionExample
course_idThe ID of the course to search for.538057

Responses

CodeDescription
200A JSON Object containing a list of CourseObject
400Client Error. Malformed request syntax
404Course not found
405The request method was not GET
429Too many requests. Client was rate limited
500An unknown internal server error occurred

Response Example

GET /courses?course_id=538057
{
  "success": true,
  "data": [
    {
      "title": "Object-Oriented Programming",
      "description": "The object-oriented programming paradigm: ...",
      "department": "Computer Science",
      "course_code": "CPSC 121",
      "course_id": 538057
    }
  ]
}