University of Oslo
Open course and study-programme data from UiO
The University of Oslo publishes its study information as open JSON APIs — courses, semesters, schedules, exams and programmes. Ask /studies/v1/course/{code} for a course's fundamentals, all keyless. Descriptive fields often come back in Norwegian.
GET https://data.uio.no/studies/v1/course/EXPHIL03
{
"info": {
"code": "EXPHIL03",
"lang": "no",
"name": "Examen philosophicum",
"status": "current-version",
"type": "course",
"url": "https://www.uio.no/studier/emner/hf/ifikk/EXPHIL03/index.html"
},
"metadata": {
"count": 1,
"status": "OK",
"total": 1
}
}curl "https://data.uio.no/studies/v1/course/EXPHIL03"const res = await fetch("https://data.uio.no/studies/v1/course/EXPHIL03");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://data.uio.no/studies/v1/course/EXPHIL03")
print(res.json())/studies/v1/course/EXPHIL03PROBEDOpen course and study-programme data from UiO
/studiesStudies — documented GET route.
/studies/1Studies details by ID (example: 1).
/studies?limit=10Studies — documented GET route.
/studies/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
University of Oslo: common questions
Is University of Oslo free to use?
Yes — University of Oslo is a free open data API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does University of Oslo need an API key?
No — University of Oslo needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call University of Oslo from the browser?
Yes — University of Oslo returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is University of Oslo up right now?
As of our last scheduled check, University of Oslo is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.