Politecnico di Torino Surveys API

Surveys 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 1

GET /surveys Get surveys | Mostra survey #

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-surveys-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-surveys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Polito Students API — Surveys
  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: Surveys
paths:
  /surveys:
    get:
      operationId: Surveys_getSurveys
      summary: Get surveys | Mostra survey
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Survey'
                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:
      - Surveys
components:
  schemas:
    Survey:
      type: object
      required:
      - id
      - title
      - subtitle
      - category
      - type
      - period
      - year
      - isMandatory
      - isCompiled
      - compileDate
      - url
      - startsAt
      - endsAt
      properties:
        id:
          type: number
          example: 1
        title:
          type: string
          example: Survey title
        subtitle:
          type:
          - string
          - 'null'
          example: Survey subtitle
        category:
          $ref: '#/components/schemas/SurveyTaxonomy'
        type:
          $ref: '#/components/schemas/SurveyTaxonomy'
        period:
          type: number
          example: 2
        year:
          type: string
          example: '2024'
        isMandatory:
          type: boolean
          example: true
        isCompiled:
          type: boolean
          example: false
        compileDate:
          type:
          - string
          - 'null'
          format: date-time
          example: '2022-08-31T14:00:00Z'
        url:
          type: string
          example: https://
        startsAt:
          type: string
          format: date-time
          example: '2022-08-31T14:00:00Z'
        endsAt:
          type: string
          format: date-time
          example: '2022-08-31T14:00:00Z'
        course:
          type:
          - object
          - 'null'
          allOf:
          - $ref: '#/components/schemas/SurveyCourseRef'
      example:
        id: 1
        title: Survey title
        subtitle: Survey subtitle
        category:
          id: CPD
          name: CPD
        type:
          id: CPD
          name: CPD
        period: 2
        year: '2024'
        isMandatory: true
        isCompiled: false
        compileDate: '2022-08-31T14:00:00Z'
        url: https://
        startsAt: '2022-08-31T14:00:00Z'
        endsAt: '2022-08-31T14:00:00Z'
        course:
          id: 1
          name: Course name
          shortcode: 01NYHOV
    SurveyTaxonomy:
      type: object
      required:
      - id
      - name
      properties:
        id:
          type: string
          example: CPD
        name:
          type: string
          example: CPD
      example:
        id: CPD
        name: CPD
    ErrorResponse:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
    SurveyCourseRef:
      type: object
      required:
      - id
      - name
      - shortcode
      properties:
        id:
          type: number
          example: 1
        name:
          type: string
          example: Course name
        shortcode:
          type: string
          example: 01NYHOV
      example:
        id: 1
        name: Course name
        shortcode: 01NYHOV
  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 Surveys API'. servers[] needed no repair: both parent
    contracts declare the same two hosts.