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

  1. Exporting the data into CSV
  2. Scraping and adding data on licensed programs for each of the institutions using the links on the NCHE website
  3. 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:
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/award-types/'

                
Single:
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/award-types/2'

                
Institution Type
List:
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institution-types/'

                
Single:
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institution-types/2'

                
Institutions
All:
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institutions/'

                
Filter by Institution Type:
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institutions?filter[institution-type]=1'

                
Filter by Award Type:
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institutions?filter[award-type]=3'

                
Single:
curl --location 'https://opendata.ssmusoke.dev/api/education-institutions/institutions/10'