Discover/Gov API
live

Gov APIibass.jamb.gov.ng

Access JAMB's IBASS data: search Nigerian institutions, filter by type, and retrieve UTME subject combinations and O'level requirements for any programme.

Endpoint health
verified 6d ago
search_institutions
list_institution_types
get_institution_courses
3/3 passing latest checkself-healing
Endpoints
3
Updated
21d ago

What is the Gov API?

The JAMB IBASS API exposes 3 endpoints covering Nigerian tertiary institution data from the Joint Admissions and Matriculation Board's Integrated Brochure and Syllabus System. Use search_institutions to find universities, polytechnics, and colleges by name or type, and get_institution_courses to retrieve per-programme UTME subject combinations, O'level prerequisites, and direct entry requirements for any institution in the system.

Try it

No input parameters required.

api.parse.bot/scraper/ef153e5c-4464-4a87-802d-623cc602c762/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ef153e5c-4464-4a87-802d-623cc602c762/list_institution_types' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ibass-jamb-gov-ng-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: JAMB IBASS SDK — discover institution types, search institutions, explore courses."""
from parse_apis.jamb_ibass_api import JambIbass, InstitutionTypeId, InstitutionNotFound

client = JambIbass()

# List all institution types — small stable set, useful for filtering.
for itype in client.institutiontypes.list(limit=5):
    print(itype.title, itype.regulator_type)

# Search degree-awarding institutions using the typed enum.
inst = client.institutions.search(type_id=InstitutionTypeId.DEGREE_AWARDING, limit=1).first()
if inst:
    print(inst.title, inst.state, inst.ownership)

    # Drill into courses offered by this institution.
    for course in inst.courses.list(limit=3):
        print(course.title, course.department, course.subjects)

# Typed error handling: catch InstitutionNotFound on a bad id.
try:
    bad_inst = client.institution(id=999999)
    for c in bad_inst.courses.list(limit=1):
        print(c.title)
except InstitutionNotFound as exc:
    print(f"Institution not found: {exc.institution_id}")

print("Exercised: institutiontypes.list / institutions.search / inst.courses.list")
All endpoints · 3 totalmissing one? ·

Returns all available institution types (NCE, ND, DEGREE AWARDING INSTITUTIONS). Each type carries a regulator_type and a numeric id usable as a filter in search_institutions. The list is small and stable — cache client-side.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "institution_types": "array of institution type objects, each with id, title, and regulator_type"
  },
  "sample": {
    "data": {
      "institution_types": [
        {
          "id": 1,
          "title": "NCE",
          "regulator_type": "NCCE"
        },
        {
          "id": 2,
          "title": "ND",
          "regulator_type": "NBTE"
        },
        {
          "id": 4,
          "title": "DEGREE AWARDING INSTITUTIONS",
          "regulator_type": "NUC"
        }
      ]
    },
    "status": "success"
  }
}

About the Gov API

Institution Discovery

The list_institution_types endpoint returns all available institution classification objects, each carrying an id, title (e.g., NCE, ND, DEGREE AWARDING INSTITUTIONS), and a regulator_type field. These IDs feed directly into the type_id filter on search_institutions, letting you scope results to a specific tier of Nigerian tertiary education.

Searching Institutions

search_institutions accepts four optional parameters: page for pagination, query for a keyword match against institution names, type_id from the types list, and category_id for further classification. Results come back as a paginated object with 20 records per page, including pagination metadata fields (current_page, last_page, total, per_page) alongside the data array. Each institution object in the array carries the identifiers you need to drill down further.

Course and Programme Requirements

get_institution_courses takes a required institution_id (obtained from search_institutions results) and returns all programmes offered at that institution. Each course object includes title, code, department, status, subjects, utme_requirements, and direct entry requirements. An optional query parameter lets you filter courses by keyword within a given institution, and the response is also paginated so large programme catalogs can be traversed page by page.

Reliability & maintenanceVerified

The Gov API is a managed, monitored endpoint for ibass.jamb.gov.ng — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ibass.jamb.gov.ng changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ibass.jamb.gov.ng API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a UTME subject-combination lookup tool that tells students which subjects to register for a given course at a specific institution
  • Aggregate O'level prerequisite data across all degree-awarding institutions to compare admission requirements by programme
  • Populate an institution directory filtered by type (NCE, ND, degree) for a Nigerian education portal
  • Generate alerts when searching for institutions by name keyword to surface all schools offering a chosen course
  • Support a JAMB preparation app with authoritative course codes and departmental data per institution
  • Build a direct entry requirements reference for prospective HND or diploma holders planning to upgrade
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does JAMB provide an official public developer API for IBASS?+
JAMB does not publish a documented public developer API for the IBASS platform. The IBASS website at ibass.jamb.gov.ng is intended for manual browsing by prospective students and institutions.
What does `get_institution_courses` actually return for each course?+
Each course object includes the programme title, code, department, status, subjects (the UTME subject combination), utme_requirements, and direct entry requirements. You must supply a valid institution_id from search_institutions results; it is the only required parameter on that endpoint.
Does the API expose cut-off marks or admission quotas per institution?+
Not currently. The API covers institution metadata, programme listings, UTME subject combinations, O'level requirements, and direct entry requirements. Cut-off marks and admission quota data are not part of the current response fields. You can fork this API on Parse and revise it to add an endpoint targeting that data if it becomes available.
How does pagination work across `search_institutions` and `get_institution_courses`?+
Both endpoints return 20 records per page. The data wrapper object includes current_page, last_page, total, and per_page fields so you can iterate through the full result set by incrementing the page parameter until current_page equals last_page.
Can I retrieve all institution types without providing any filter?+
list_institution_types takes no inputs and always returns the full list of available types, each with an id, title, and regulator_type. Use the returned id values as the type_id parameter in search_institutions to narrow results to a specific category such as NCE colleges or degree-awarding institutions.
Page content last updated . Spec covers 3 endpoints from ibass.jamb.gov.ng.
Related APIs in EducationSee all →
myschool.ng API
Search for Nigerian schools by type, explore courses and admission requirements, and stay updated with the latest education news all in one place. Find detailed information about schools and their programs to make informed decisions about your education.
ucas.com API
Search and explore UK university courses, apprenticeships, and scholarships all in one place, while discovering detailed information about education providers and their offerings. Find the perfect educational path by filtering courses and apprenticeships by your preferences and accessing comprehensive provider details to inform your decisions.
shiksha.com API
Search and browse Shiksha colleges by stream/course, then fetch detailed institute profiles and course offerings, plus upcoming exam schedules by stream.
opendays.com API
Search and discover open day events at educational institutions, view detailed event information and institution profiles, and browse the complete calendar of upcoming visits. Find the perfect school or university open day by searching institutions or exploring all available options with their program details and dates.
referensi.data.kemendikdasmen.go.id API
Search and browse Indonesian educational institutions by location hierarchy, view detailed institution information, and access foundation data from the Ministry of Education's official reference portal. Find schools, colleges, and educational programs across provinces, districts, and sub-districts while checking institution status and service program details.
naac.gov.in API
Search for India's accredited educational institutions and access their NAAC accreditation history, assessment reports, and detailed evaluation data by state. Find comprehensive information about institution quality metrics, self-study reports, and peer team evaluations all in one place.
bsigroup.com API
Search and discover BSI Group training courses, qualifications, and schedules across multiple categories, topics, levels, standards, and delivery formats to find the perfect certification program for your needs. Filter results by course details, availability, and format to compare options and plan your professional development.
kys.udiseplus.gov.in API
Search for schools across India by geographic region and management type, then access detailed information about any school including academic performance, facilities, and enrollment data. Navigate through states, districts, and blocks to find schools that match your criteria and compare their profiles.