Politecnico di Torino Announcements API

Announcements resources of the Polito Faculty 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 2

GET /announcements List announcements | Lista annunci #
PUT /announcements/{announcementId}/read Mark announcement as read | Segna annuncio come letto #

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-announcements-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-announcements-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Polito Faculty API — Announcements
  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: Announcements
paths:
  /announcements:
    get:
      operationId: Announcements_getAnnouncements
      summary: List announcements | Lista annunci
      parameters:
      - name: new
        in: query
        required: false
        schema:
          type: boolean
        explode: false
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Announcement'
                required:
                - data
              example:
                data:
                - id: abc-123
                  title: Welcome to the app
                  contents: Here is a quick guide to get started.
                  description: Onboarding announcement
                  scope: onboarding
                  seen: false
                  date: '2026-01-01T12:00:00Z'
                - id: def-456
                  title: New feature available
                  contents: Check out the new booking system.
                  scope: appInfo
                  seen: true
                  date: '2026-02-15T09:30:00Z'
        '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:
      - Announcements
  /announcements/{announcementId}/read:
    put:
      operationId: Announcements_markAnnouncementAsRead
      summary: Mark announcement as read | Segna annuncio come letto
      parameters:
      - name: announcementId
        in: path
        required: true
        schema:
          type: string
      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:
      - Announcements
components:
  schemas:
    Announcement:
      type: object
      required:
      - id
      - title
      - contents
      - scope
      - seen
      - date
      properties:
        id:
          type: string
          example: abc-123
        title:
          type: string
          example: Welcome to the app
        contents:
          type: string
          example: Here is a quick guide to get started.
        description:
          type: string
          example: Onboarding announcement
        scope:
          allOf:
          - $ref: '#/components/schemas/AnnouncementScope'
          example: onboarding
        seen:
          type: boolean
          example: false
        date:
          type: string
          format: date-time
          example: '2026-01-01T12:00:00Z'
        cover:
          type: string
          example: https://example.com/announcement-cover.jpg
      example:
        id: abc-123
        title: Welcome to the app
        contents: Here is a quick guide to get started.
        description: Onboarding announcement
        scope: onboarding
        seen: false
        date: '2026-01-01T12:00:00Z'
    ErrorResponse:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
    AnnouncementScope:
      type: string
      enum:
      - onboarding
      - appInfo
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer
x-refined-from:
- politecnico-di-torino-faculty-api.yaml
- 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 API'. servers[] needed no repair: both parent
    contracts declare the same two hosts.