UCSB Academic Quarter Calendar

The Office of the Registrar's quarter calendar — first/last day of classes and finals, the three registration passes, fee deadline and add/drop deadlines. The keystone contract of the estate: everything else is keyed on quarter. Published as Swagger 2.0, 4 paths, base https://api.ucsb.edu/academics.

Operations 4

GET /quartercalendar/v1/quarters/current #
GET /quartercalendar/v1/quarters #
GET /quartercalendar/v1/sessions/current #
GET /quartercalendar/v1/sessions #

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/academic-quarter-calendar"
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

ucsb-academic-quarter-calendar-openapi.yml Raw ↑
swagger: '2.0'
info:
  version: v1
  title: Academic Quarter Calendar
  description: Quarter Calendar information from the Office of the Registrar.
  x-source-url: https://developer.ucsb.edu/sites/default/files/openapi/quartercalendar-v1-api.ucsb_.edu_.yaml
  x-last-validated: '2026-08-30'
  x-operator: institution
host: api.ucsb.edu
basePath: /academics
schemes:
- https
securityDefinitions:
  ucsb-api-key:
    name: ucsb-api-key
    in: header
    type: apiKey
paths:
  /quartercalendar/v1/quarters/current:
    get:
      tags:
      - Quarters
      operationId: /quartercalendar/v1/quarters/current
      consumes: []
      produces:
      - application/json
      - text/json
      parameters:
      - name: type
        in: query
        description: "This can be (default) 'firstdayofquarter',\r\n            'lastdayoffinals'."
        required: false
        type: string
        default: ''
      - name: ucsb-api-version
        in: header
        description: The requested API version
        required: false
        type: string
        default: '1.0'
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/QuarterCalendar'
      description: "Returns the current quarter. The criteria is today's date and the search <param name=\"\
        type\" />.\r\nThe search type can be 'firstdayofquarter' (default), 'lastdayoffinals'.\r\nThis\
        \ data is also available in a human readable format at\r\n([Data Dictionary - Quarter Calendar](https://dataservices.sa.ucsb.edu/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/Lookup%20Tables/Quarter%20Calendar.rdl&amp;Source=https%3A%2F%2Fdataservices%2Esa%2Eucsb%2Eedu%2FLookup%2520Tables%2FForms%2FAllItems%2Easpx))"
      security:
      - ucsb-api-key: []
  /quartercalendar/v1/quarters:
    get:
      tags:
      - Quarters
      operationId: /quartercalendar/v1/quarters
      consumes: []
      produces:
      - application/json
      - text/json
      parameters:
      - name: quarter
        in: query
        description: A specific quarter. If this is used all other parameters are ignored.
        required: false
        type: string
        default: ''
      - name: date
        in: query
        description: A date within a quarter in format YYYYMMDD.
        required: false
        type: string
        default: ''
      - name: type
        in: query
        description: "Used with date parameter. This can be (default) 'firstdayofquarter' or\r\n     \
          \       'lastdayoffinals'."
        required: false
        type: string
        default: ''
      - name: ucsb-api-version
        in: header
        description: The requested API version
        required: false
        type: string
        default: '1.0'
      responses:
        '200':
          description: OK
          schema:
            type: array
            items:
              $ref: '#/definitions/QuarterCalendar'
      description: "Search for a listing of quarters that fit the criteria. All quarters can be returned\
        \ or\r\na specific quarter. If the quarter parameter is used, all other parameters are ignored.\r\
        \nThe date parameter can be used to filter the list down to a quarter that contains the\r\ngive\
        \ date (YYYYMMDD format). On the date search the criteria for which date is compared\r\nagainst\
        \ the search day can be 'firstdayofquarter' or 'lastdayoffinals'.\r\nThis data is also available\
        \ in a human readable format at\r\n([Data Dictionary - Quarter Calendar](https://dataservices.sa.ucsb.edu/_layouts/15/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/Lookup%20Tables/Quarter%20Calendar.rdl&amp;Source=https%3A%2F%2Fdataservices%2Esa%2Eucsb%2Eedu%2FLookup%2520Tables%2FForms%2FAllItems%2Easpx))"
      security:
      - ucsb-api-key: []
  /quartercalendar/v1/sessions/current:
    get:
      tags:
      - Sessions
      operationId: /quartercalendar/v1/sessions/current
      consumes: []
      produces:
      - application/json
      - text/json
      parameters:
      - name: ucsb-api-version
        in: header
        description: The requested API version
        required: false
        type: string
        default: '1.0'
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/SessionCalendar'
      description: Get Session Information by quarter
      security:
      - ucsb-api-key: []
  /quartercalendar/v1/sessions:
    get:
      tags:
      - Sessions
      operationId: /quartercalendar/v1/sessions
      consumes: []
      produces:
      - application/json
      - text/json
      parameters:
      - name: quarter
        in: query
        description: quarter
        required: false
        type: string
        default: ''
      - name: date
        in: query
        required: false
        type: string
        default: ''
      - name: ucsb-api-version
        in: header
        description: The requested API version
        required: false
        type: string
        default: '1.0'
      responses:
        '200':
          description: OK
          schema:
            type: array
            items:
              $ref: '#/definitions/SessionCalendar'
      description: Get Session Information by quarter
      security:
      - ucsb-api-key: []
definitions:
  QuarterCalendar:
    type: object
    properties:
      quarter:
        type: string
      qyy:
        type: string
      name:
        type: string
      category:
        type: string
        readOnly: true
      academicYear:
        type: string
        readOnly: true
      firstDayOfClasses:
        format: date-time
        type: string
      lastDayOfClasses:
        format: date-time
        type: string
      firstDayOfFinals:
        format: date-time
        type: string
      lastDayOfFinals:
        format: date-time
        type: string
      firstDayOfQuarter:
        format: date-time
        type: string
      lastDayOfSchedule:
        format: date-time
        type: string
      pass1Begin:
        format: date-time
        type: string
      pass2Begin:
        format: date-time
        type: string
      pass3Begin:
        format: date-time
        type: string
      feeDeadline:
        format: date-time
        type: string
      lastDayToAddUnderGrad:
        format: date-time
        type: string
      lastDayToAddGrad:
        format: date-time
        type: string
      lastDayThirdWeek:
        format: date-time
        type: string
  SessionCalendar:
    type: object
    properties:
      quarter:
        type: string
      sessionNumber:
        type: string
      firstDayOfClasses:
        format: date-time
        type: string
      firstDayOfFinals:
        format: date-time
        type: string
      lastDayOfClasses:
        format: date-time
        type: string
      lastDayOfFinals:
        format: date-time
        type: string
      lastDayToAddGrad:
        format: date-time
        type: string
      lastDayToAddUnderGrad:
        format: date-time
        type: string
      lastDayToCancel:
        format: date-time
        type: string
      lastDayToDropGrad:
        format: date-time
        type: string
      lastDayToDropUnderGrad:
        format: date-time
        type: string