Politecnico di Torino People API

People 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 /people Search people | Cerca persone #
GET /people/{personId} Show person | Mostra persona #

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-people-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-people-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Polito Faculty API — People
  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: People
paths:
  /people:
    get:
      operationId: People_getPeople
      summary: Search people | Cerca persone
      parameters:
      - name: search
        in: query
        required: true
        description: Filter people containing 'search' in their full name
        schema:
          type: string
        explode: false
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/PersonOverview'
                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:
      - People
  /people/{personId}:
    get:
      operationId: People_getPerson
      summary: Show person | Mostra persona
      parameters:
      - name: personId
        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/Person'
                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:
      - People
components:
  schemas:
    Person:
      type: object
      required:
      - email
      - phoneNumbers
      - facilityShortName
      - profileUrl
      - courses
      properties:
        email:
          type: string
          example: fulvio.corno@polito.it
        phoneNumbers:
          type: array
          items:
            $ref: '#/components/schemas/PhoneNumber'
        facilityShortName:
          type:
          - string
          - 'null'
          example: DAUIN
        profileUrl:
          type: string
          example: https://www.dauin.polito.it/personale/scheda/(matricola)/002154
        courses:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PersonCourse'
      allOf:
      - $ref: '#/components/schemas/PersonOverview'
      example:
        id: 2154
        firstName: Fulvio
        lastName: Corno
        picture: https://www.swas.polito.it/_library/image_pub.asp?matricola=002154
        role: Docente
        email: fulvio.corno@polito.it
        phoneNumbers:
        - full: 0110907053
          internal: '7053'
        facilityShortName: DAUIN
        profileUrl: https://www.dauin.polito.it/personale/scheda/(matricola)/002154
        courses:
        - id: 258674
          shortcode: 01NYHOV
          name: Computer sciences
          role: Collaboratore
          year: 2021
    PhoneNumber:
      type: object
      required:
      - full
      - internal
      properties:
        full:
          type: string
          example: 0110907053
        internal:
          type: string
          example: '7053'
      example:
        full: 0110907053
        internal: '7053'
    ErrorResponse:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
    PersonOverview:
      type: object
      required:
      - id
      - firstName
      - lastName
      - picture
      - role
      properties:
        id:
          type: number
          example: 2154
        firstName:
          type: string
          example: Fulvio
        lastName:
          type: string
          example: Corno
        picture:
          type:
          - string
          - 'null'
          example: https://www.swas.polito.it/_library/image_pub.asp?matricola=002154
        role:
          type: string
          example: Docente
      example:
        id: 2154
        firstName: Fulvio
        lastName: Corno
        picture: https://www.swas.polito.it/_library/image_pub.asp?matricola=002154
        role: Docente
    PersonCourse:
      type: object
      required:
      - id
      - name
      - role
      - year
      properties:
        id:
          type: integer
          description: The identifier for this course
          example: 258674
        shortcode:
          type: string
          description: The shortcode for this course
          example: 01NYHOV
        name:
          type: string
          description: The name of the course
          example: Computer sciences
        role:
          type: string
          description: The role of the person in this course
          example: Collaboratore
        year:
          type: number
          description: The year this course was given in
          example: 2021
      example:
        id: 258674
        shortcode: 01NYHOV
        name: Computer sciences
        role: Collaboratore
        year: 2021
  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 People API'. servers[] needed no repair: both parent
    contracts declare the same two hosts.