Politecnico di Torino News API

News 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 /news List news | Lista news #
GET /news/{newsItemId} Show news | Mostra news #

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-news-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-news-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Polito Faculty API — News
  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: News
paths:
  /news:
    get:
      operationId: News_getNews
      summary: List news | Lista news
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/NewsItemOverview'
                required:
                - data
        '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:
      - News
  /news/{newsItemId}:
    get:
      operationId: News_getNewsItem
      summary: Show news | Mostra news
      parameters:
      - name: newsItemId
        in: path
        required: true
        schema:
          type: number
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/NewsItem'
                required:
                - data
        '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:
      - News
components:
  schemas:
    NewsItem:
      type: object
      required:
      - location
      - htmlContent
      - extras
      properties:
        location:
          type: string
          example: Energy Center - Via Paolo Borsellino 38, Torino
        htmlContent:
          type: string
          example: Martedì <strong>18 aprile 2023 - </strong>presso l'<strong>Auditorium dell'Energy Center del Politecnico</strong>...
        extras:
          type: array
          items:
            $ref: '#/components/schemas/NewsItemExtra'
      allOf:
      - $ref: '#/components/schemas/NewsItemOverview'
      example:
        id: 123
        title: Partecipazione, co-progettazione e impatto sociale. Sfide e opportunità per l'inclusione sociale
        isEvent: false
        shortDescription: Seminario di presentazione del progetto
        eventStartTime: Dal 30 agosto 2023
        eventEndTime: Al 30 agosto 2023
        createdAt: '2022-08-31T14:00:00Z'
        location: Energy Center - Via Paolo Borsellino 38, Torino
        htmlContent: Martedì <strong>18 aprile 2023 - </strong>presso l'<strong>Auditorium dell'Energy Center del Politecnico</strong>...
        extras:
        - url: https://
          description: Bando
          type: image
          sizeInKiloBytes: 305
    NewsItemOverview:
      type: object
      required:
      - id
      - title
      - isEvent
      - shortDescription
      - eventStartTime
      - eventEndTime
      - createdAt
      properties:
        id:
          type: number
          example: 123
        title:
          type: string
          example: Partecipazione, co-progettazione e impatto sociale. Sfide e opportunità per l'inclusione sociale
        isEvent:
          type: boolean
          example: false
        shortDescription:
          type: string
          example: Seminario di presentazione del progetto
        eventStartTime:
          type:
          - string
          - 'null'
          example: Dal 30 agosto 2023
        eventEndTime:
          type:
          - string
          - 'null'
          example: Al 30 agosto 2023
        createdAt:
          type: string
          format: date-time
          example: '2022-08-31T14:00:00Z'
      example:
        id: 123
        title: Partecipazione, co-progettazione e impatto sociale. Sfide e opportunità per l'inclusione sociale
        isEvent: false
        shortDescription: Seminario di presentazione del progetto
        eventStartTime: Dal 30 agosto 2023
        eventEndTime: Al 30 agosto 2023
        createdAt: '2022-08-31T14:00:00Z'
    ErrorResponse:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
    NewsItemExtra:
      type: object
      required:
      - url
      - description
      - type
      - sizeInKiloBytes
      properties:
        url:
          type: string
          example: https://
        description:
          type: string
          example: Bando
        type:
          type: string
          enum:
          - link
          - file
          - image
          example: image
        sizeInKiloBytes:
          type:
          - integer
          - 'null'
          example: 305
      example:
        url: https://
        description: Bando
        type: image
        sizeInKiloBytes: 305
  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 News API'. servers[] needed no repair: both parent
    contracts declare the same two hosts.