Query String
- <limit=int> [optional] exclude for all
- <offset=int> [optional] default is 0
- <s=string> [optional] performs a lowercase like `%string%` search on "KU Title|KU Subject Description|KU_Subject KU_CourseNumber".
- <st=string,...> [optional] include multiple state abbreviations comma separated. use "null" to include courses with no state.
- <ctry=string,...> [optional] include multiple country abbreviations comma separated. use "null" to include courses with no country.
- <sch=string,...> [optional] include multiple school codes comma separated.
Multiple query options can be used together. Combining options will AND them together.
Perform a "not in" search by prepending a ! in front. ex. !usa or !ks
Response 200 (streamed response)
{
"total": int,
"data": [
{
"hash" => string,
"recKey" => string,
"transferSchoolCode" => ?string,
"transferSchoolName" => ?string,
"transferSchoolState" => ?string,
"transferSchoolStateDescription" => ?string,
"transferSchoolCountry" => ?string,
"transferSchoolCountryDescription" => ?string,
"transferSchoolSubject" => ?string,
"transferSchoolCourseNumber" => ?string,
"transferCourseHours" => ?string,
"kuCourseTitle" => ?string,
"kuCourseSubject" => ?string,
"kuCourseSubjectDescription" => ?string,
"kuCourseNumber" => ?string,
"kuCourseHours" => ?string,
"kuCore" => ?string,
"kborCore" => ?string,
"geogroup" => ?string,
"notes" => ?string,
"fromDate" => ?string,
"toDate" => ?string,
"transferSchoolCourseTitle" => ?string,
},
...
]
}