Higher Education Institutions
Overview
This is based off data from the NCHE website, at https://www.nche.gov.au/education-and-training/education-institutions.
Roadmap
The road map for this is as below, feel free to send comments to opendata at ssmusoke.dev
- Exporting the data into CSV
- Scraping and adding data on licensed programs for each of the institutions using the links on the NCHE website
- Integrating additional data for universities from https://github.com/wkambale/Ug-Universities-Api/blob/main/uganda-universities-domains.json
API Code Examples
The api allows for filtering of the institutions by type of institution and the type of award
- Award Type
- List:
Single:curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/award-types/'
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/award-types/2'
- Institution Type
- List:
Single:curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institution-types/'
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institution-types/2'
- Institutions
- All:
Filter by Institution Type:curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institutions/'
Filter by Award Type:curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institutions?filter[institution-type]=1'
Single:curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institutions?filter[award-type]=3'
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institutions/10'