University of Waterloo ExamSchedules API

The ExamSchedules API from University of Waterloo — 2 operation(s) for examschedules.

Operations 2

GET /v3/ExamSchedules Returns Exam Schedule data for the current Term
GET /v3/ExamSchedules/{code} Returns Exam Schedule data for the requested Term

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-waterloo-examschedules-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-waterloo-examschedules-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Waterloo OpenData Exam Schedules API
  version: v3
servers:
- url: https://openapi.data.uwaterloo.ca
  description: University of Waterloo OpenData API v3
security:
- apiKey: []
tags:
- name: ExamSchedules
paths:
  /v3/ExamSchedules:
    get:
      tags:
      - ExamSchedules
      summary: Returns Exam Schedule data for the current Term
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Exam'
  /v3/ExamSchedules/{code}:
    get:
      tags:
      - ExamSchedules
      summary: Returns Exam Schedule data for the requested Term
      parameters:
      - name: code
        in: path
        description: Waterloo Term code
        required: true
        schema:
          maxLength: 4
          minLength: 4
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Exam'
components:
  schemas:
    Exam:
      type: object
      properties:
        examDisplayName:
          type:
          - string
          - 'null'
          description: The name of the Exam, representative of the Course name
        sections:
          type:
          - string
          - 'null'
          description: Sections of the Class this Exam schedule is applicable to
        isOnlineDescription:
          type:
          - string
          - 'null'
          description: Indicates whether this Exam is held online, or provides an alternate description
        day:
          type:
          - string
          - 'null'
          description: Day name on which this Exam is scheduled to take place
        location:
          type:
          - string
          - 'null'
          description: Description of the location of the Exam
        examWindowStartDate:
          type:
          - string
          - 'null'
          description: The date the Exam is scheduled for
        examWindowStartTime:
          type:
          - string
          - 'null'
          description: The time the Exam is scheduled to start
        examDuration:
          type:
          - string
          - 'null'
          description: The scheduled duration of the Exam
        notes:
          type:
          - string
          - 'null'
          description: Additional notes about this Exam schedule
        termCode:
          type:
          - string
          - 'null'
          description: Term Code for the Term this Exam is associated with
      additionalProperties: false
      description: Represents a scheduled Exam for a Class
  securitySchemes:
    apiKey:
      type: apiKey
      description: Custom API key authentication
      name: x-api-key
      in: header