Search by Course ID
Returns aCourseObject
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
Name | Description | Example |
---|---|---|
course_id | The ID of the course to search for. | 538057 |
Responses
Code | Description |
---|---|
200 | A JSON Object containing a list of CourseObject |
400 | Client Error. Malformed request syntax |
404 | Course not found |
405 | The request method was not GET |
429 | Too many requests. Client was rate limited |
500 | An 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
}
]
}