University of Auckland Courses API

Courses API

Operations 3

GET /subject/{subject}/courses Courses get by subject #
GET /courses Courses get #
GET /course/{id} Course id get #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/university-of-auckland-courses-api-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

university-of-auckland-courses-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Course Catalog Api V3 Courses API
  description: Exposes some course information by querying CS9 views. Read only API.
  version: '3.0'
  contact:
    name: Student Recruitment
    email: student-recruitment@list.auckland.ac.nz
servers:
- url: httpss://apis.auckland.ac.nz/courses/v3
  description: ''
tags:
- name: Courses API
  description: Courses API
paths:
  /subject/{subject}/courses:
    get:
      tags:
      - Courses API
      description: Search for courses by subject
      operationId: coursesGetBySubject
      parameters:
      - name: subject
        in: path
        description: Subject
        required: true
        schema:
          type: string
          default: COMLAW
          maxLength: 50
          minLength: 0
      - name: from
        in: query
        description: Offset the list of returned results by this amount.
        required: false
        schema:
          type: integer
          format: int32
      - name: size
        in: query
        description: Number of items to retrieve. No default.
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: An array of products
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseList'
        '400':
          description: Unexpected error
          content:
            '*/*':
              schema:
                type: string
      summary: Courses get by subject
      x-summary-source: derived
  /courses:
    get:
      tags:
      - Courses API
      description: Search for courses
      operationId: coursesGet
      parameters:
      - name: text
        in: query
        description: Search text, eg. students or Spectroscopy
        required: false
        schema:
          type: string
          maxLength: 200
          minLength: 0
      - name: subject
        in: query
        description: Subject
        required: false
        schema:
          type: string
          maxLength: 50
          minLength: 0
      - name: catalogNbr
        in: query
        description: Catalogue number
        required: false
        schema:
          type: string
          maxLength: 50
          minLength: 0
      - name: year
        in: query
        description: Course year, e.x. 2014, or empty (current) or 'latestActive
        required: false
        schema:
          type: string
          maxLength: 20
          minLength: 0
      - name: level
        in: query
        description: Level
        required: false
        schema:
          type: integer
          format: int64
      - name: acadGroup
        in: query
        description: Academic Group
        required: false
        schema:
          type: string
          maxLength: 50
          minLength: 0
      - name: acadOrg
        in: query
        description: Academic Org
        required: false
        schema:
          type: string
          maxLength: 50
          minLength: 0
      - name: acadCareer
        in: query
        description: Academic Career
        required: false
        schema:
          type: string
          maxLength: 10
          minLength: 0
      - name: mainProgram
        in: query
        description: Main Programme Code
        required: false
        schema:
          type: string
          maxLength: 50
          minLength: 0
      - name: mainProgramRelated
        in: query
        description: Main Programme Related. Return the courses related to main programme as default.
        required: false
        schema:
          type: boolean
          default: true
      - name: effStatus
        in: query
        description: Effective Status
        required: false
        schema:
          type: string
          maxLength: 1
          minLength: 0
      - name: microcredential
        in: query
        description: Microcredential flag
        required: false
        schema:
          type: boolean
      - name: from
        in: query
        description: Offset the list of returned results by this amount. Default is zero.
        required: false
        schema:
          type: string
          default: '0'
      - name: size
        in: query
        description: Number of items to retrieve. Defaults to 500.
        required: false
        schema:
          type: integer
          format: int32
          default: 500
      responses:
        '200':
          description: An array of courses
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CourseList'
        '400':
          description: Unexpected error
          content:
            '*/*':
              schema:
                type: string
      summary: Courses get
      x-summary-source: derived
  /course/{id}:
    get:
      tags:
      - Courses API
      description: Get course by id
      operationId: courseIdGet
      parameters:
      - name: id
        in: path
        description: Course's unique id, e.g. 001342 or 040230 or 036707
        required: true
        schema:
          type: string
          maxLength: 50
          minLength: 0
      - name: year
        in: query
        description: Course year, e.g. 2003. Use `latestActive` to get the record from last active year. If not specified, defaults to a current year.
        required: false
        schema:
          type: string
          maxLength: 20
          minLength: 0
      responses:
        '200':
          description: Course
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Course'
        '400':
          description: Unexpected error
          content:
            '*/*':
              schema:
                type: string
      summary: Course id get
      x-summary-source: derived
components:
  schemas:
    CourseList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Course'
        from:
          type: integer
          format: int32
        size:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
        more:
          type: boolean
    Course:
      type: object
      properties:
        id:
          type: string
        year:
          type: integer
          format: int32
        active:
          type: string
        level:
          type: integer
          format: int32
        feeBand:
          type: string
        crseId:
          type: string
        crseOfferNbr:
          type: integer
          format: int32
        effdt:
          type: string
        effdtOffer:
          type: string
        acadCareer:
          type: string
        acadGroup:
          type: string
        acadOrg:
          type: string
        subject:
          type: string
        catalogNbr:
          type: string
        titleLong:
          type: string
        title:
          type: string
        description:
          type: string
        text:
          type: array
          items:
            type: string
        catalogPrint:
          type: string
        componentPrimary:
          type: string
        gradingBasis:
          type: string
        rqrmntGroup:
          type: string
        rqrmntDescr:
          type: string
        splitOwner:
          type: string
        unitsAcadProg:
          type: number
          format: double
        ssrComponent:
          type: string
        mainProgram:
          type: string
        effStatus:
          type: string
        microcredential:
          type: boolean
  securitySchemes:
    apikey:
      type: apiKey
x-headmatter:
  readable_by: []