Politecnico di Torino Exams API

Exams resources of the Polito Students API, split per tag from openapi/_original/. Operated by Politecnico di Torino on app.didattica.polito.it; the contract is authored by the university in TypeSpec and published at github.com/polito/api-spec. Bearer authentication against a PoliTO account is required — the base path returns 403 anonymously.

Operations 4

GET /exams List exams | Elenca esami #
DELETE /exams/{examId}/booking Delete exam booking | Annulla prenotazione esame #
POST /exams/{examId}/booking Book exam | Prenota esame #
POST /exams/{examId}/rescheduleRequest Ask to reschedule an exam | Chiedi di spostare un esame #

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/politecnico-di-torino-exams-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

politecnico-di-torino-exams-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Polito Students API — Exams
  version: 0.0.1
  license:
    name: CC BY-NC 4.0
    url: https://creativecommons.org/licenses/by-nc/4.0/
servers:
- url: https://app.didattica.polito.it/api
  description: Production server
  variables: {}
- url: https://app.didattica.polito.it/mock/api
  description: Mock server (uses example data)
  variables: {}
security:
- BearerAuth: []
tags:
- name: Exams
paths:
  /exams:
    get:
      operationId: Exams_getExams
      summary: List exams | Elenca esami
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Exam'
                required:
                - data
              example:
                data:
                - id: 888137
                  courseId: 262147
                  courseShortcode: 01UDROV
                  courseName: Cybersecurity (AA-ZZ)
                  teacherId: 1847
                  type: Scritto
                  status: booked
                  bookingStartsAt: null
                  bookingEndsAt: '2022-08-23T14:00:00Z'
                  examStartsAt: '2022-08-29T08:00:00Z'
                  examEndsAt: '2022-08-29T10:00:00Z'
                  bookedCount: 12
                  availableCount: 8
                  moduleNumber: 1
                  notes: null
                  places: []
                  isReschedulable: false
                  question: null
                  feedback: Esiste già una prenotazione per l'esame in questione
                  requestReason: null
                  requestDetails: null
                - id: 887981
                  courseId: 262789
                  courseShortcode: 01NYHOV
                  courseName: System and device programming (AA-ZZ)
                  teacherId: 2893
                  type: Esami scritti a risposta aperta o chiusa tramite PC
                  status: available
                  bookingStartsAt: null
                  bookingEndsAt: '2022-09-02T14:00:00Z'
                  examStartsAt: '2022-09-08T14:00:00Z'
                  examEndsAt: '2022-09-08T18:00:00Z'
                  bookedCount: 42
                  availableCount: 108
                  moduleNumber: 1
                  notes: null
                  places: []
                  isReschedulable: false
                  question: null
                  feedback: null
                  requestReason: null
                  requestDetails: null
        '400':
          description: The server could not understand the request due to invalid syntax.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      tags:
      - Exams
  /exams/{examId}/booking:
    delete:
      operationId: Exams_deleteExamBookingById
      summary: Delete exam booking | Annulla prenotazione esame
      parameters:
      - name: examId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: 'There is no content to send for this request, but the headers may be useful. '
        '400':
          description: The server could not understand the request due to invalid syntax.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      tags:
      - Exams
    post:
      operationId: Exams_bookExam
      summary: Book exam | Prenota esame
      parameters:
      - name: examId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: 'There is no content to send for this request, but the headers may be useful. '
        '400':
          description: The server could not understand the request due to invalid syntax.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      tags:
      - Exams
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BookExamRequest'
  /exams/{examId}/rescheduleRequest:
    post:
      operationId: Exams_rescheduleExam
      summary: Ask to reschedule an exam | Chiedi di spostare un esame
      parameters:
      - name: examId
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: 'There is no content to send for this request, but the headers may be useful. '
        '400':
          description: The server could not understand the request due to invalid syntax.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      tags:
      - Exams
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RescheduleExamRequest'
components:
  schemas:
    PlaceRef:
      type: object
      required:
      - buildingId
      - floorId
      - roomId
      - siteId
      - name
      properties:
        buildingId:
          type: string
        floorId:
          type: string
        roomId:
          type: string
        siteId:
          type: string
        name:
          type: string
    BookExamRequest:
      type: object
      required:
      - courseShortcode
      properties:
        courseShortcode:
          type: string
          example: 01UDROV
        questionId:
          type: integer
        questionOption:
          type: integer
        requestReason:
          type: string
    ErrorResponse:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
    Exam:
      type: object
      required:
      - id
      - courseId
      - courseShortcode
      - courseName
      - teacherId
      - type
      - status
      - bookingStartsAt
      - bookingEndsAt
      - examStartsAt
      - examEndsAt
      - bookedCount
      - availableCount
      - question
      - feedback
      - isReschedulable
      - notes
      - moduleNumber
      - requestReason
      - requestDetails
      properties:
        id:
          type: integer
        courseId:
          type: number
        courseShortcode:
          type: string
        courseName:
          type: string
        teacherId:
          type: integer
        type:
          type: string
        places:
          type: array
          items:
            $ref: '#/components/schemas/PlaceRef'
        status:
          type: string
          enum:
          - available
          - booked
          - requestable
          - requested
          - requestAccepted
          - requestRejected
          - unavailable
        bookingStartsAt:
          type:
          - string
          - 'null'
          format: date-time
        bookingEndsAt:
          type: string
          format: date-time
        examStartsAt:
          type:
          - string
          - 'null'
          format: date-time
        examEndsAt:
          type:
          - string
          - 'null'
          format: date-time
        bookedCount:
          type: integer
        availableCount:
          type: integer
        question:
          type:
          - object
          - 'null'
          properties:
            id:
              type: integer
            statement:
              type: string
            options:
              type: array
              items:
                type: string
          required:
          - id
          - statement
          - options
        feedback:
          type:
          - string
          - 'null'
        isReschedulable:
          type: boolean
          description: If true, the student can ask the professor to reschedule the exam
        notes:
          type:
          - string
          - 'null'
        moduleNumber:
          type: integer
          description: The module number, if this is a module
        requestReason:
          type:
          - string
          - 'null'
        requestDetails:
          type:
          - string
          - 'null'
    RescheduleExamRequest:
      type: object
      required:
      - courseShortcode
      - requestReason
      - requestDetails
      properties:
        courseShortcode:
          type: string
          example: 01UDROV
        requestReason:
          type: string
        requestDetails:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer
x-refined-from:
- politecnico-di-torino-students-api.yaml
x-refine-repair:
  generated: '2026-08-30'
  method: derived
  source: openapi/_original/politecnico-di-torino-students-api.yaml
  note: >-
    Title re-based from the true parent contract on 2026-08-30. The per-tag split had
    welded the first output's title onto every later output, so this document read
    'Polito Faculty Announcements Exams API'. servers[] needed no repair: both parent
    contracts declare the same two hosts.