University of Lisbon Person API

Authenticated person-scoped academic data. Requires an OAuth 2.0 token.

Operations 8

GET /person Personal profile of the authenticated user #
GET /person/courses Courses the authenticated user is enrolled in or teaches #
GET /person/curriculum Complete curriculum of the authenticated user #
GET /person/calendar/classes Class calendar of the authenticated user #
GET /person/calendar/evaluations Evaluation calendar of the authenticated user #
GET /person/evaluations Written evaluations available to the authenticated user #
PUT /person/evaluations/{id} Enrol in or withdraw from an evaluation #
GET /person/payments Payment and tuition records of the authenticated user #

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/university-of-lisbon-person-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

university-of-lisbon-person-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FenixEdu Academic API — Instituto Superior Tecnico…
  version: v1
  summary: Public academic, campus and campus-life API of the FenixEdu academic information system operated by Instituto Superior Tecnico.
  description: Public REST API of FenixEdu, the academic information system operated by Instituto Superior Tecnico (IST), a school of the Universidade de Lisboa.
  contact:
    name: Instituto Superior Tecnico — Universidade de Lisboa
    url: https://tecnico.ulisboa.pt/
    email: mail@tecnico.ulisboa.pt
  license:
    name: Not stated by the provider
  termsOfService: https://www.ulisboa.pt/en/info/terms-use-0
  x-operator: institution
  x-operator-evidence: Host fenix.tecnico.ulisboa.pt is under the institution's own registrable domain ulisboa.pt; /about returns institutionName "Instituto Superior Tecnico" and institutionUrl https://tecnico.ulisboa.pt/; the OAuth dialog at /oauth/userdialog carries an Instituto Superior Tecnico copyright notice. No vendor name appears in servers[], info.title, info.contact or the served payloads.
  x-provenance:
    generated: '2026-09-01'
    method: probed
    source:
    - https://fenix.tecnico.ulisboa.pt/api/fenix/v1/about
    - https://fenixedu.org/dev/api/
    note: Derived by API Evangelist from live probes and the provider's own human documentation. Not published by Universidade de Lisboa or by Instituto Superior Tecnico.
servers:
- url: https://fenix.tecnico.ulisboa.pt/api/fenix/v1
  description: Production — Instituto Superior Tecnico, Universidade de Lisboa
tags:
- name: Person
  description: Authenticated person-scoped academic data. Requires an OAuth 2.0 token.
paths:
  /person:
    get:
      tags:
      - Person
      operationId: getPerson
      summary: Personal profile of the authenticated user
      security:
      - fenixOAuth: []
      x-probe:
        date: '2026-09-01'
        status: 401
        note: Probed without a token to capture the authentication error contract.
      responses:
        '200':
          description: Person record.
        '401':
          $ref: '#/components/responses/Unauthorized'
  /person/courses:
    get:
      tags:
      - Person
      operationId: getPersonCourses
      summary: Courses the authenticated user is enrolled in or teaches
      security:
      - fenixOAuth: []
      x-documented-only: true
      responses:
        '200':
          description: Course enrolments.
        '401':
          $ref: '#/components/responses/Unauthorized'
  /person/curriculum:
    get:
      tags:
      - Person
      operationId: getPersonCurriculum
      summary: Complete curriculum of the authenticated user
      security:
      - fenixOAuth: []
      x-documented-only: true
      responses:
        '200':
          description: Curriculum.
        '401':
          $ref: '#/components/responses/Unauthorized'
  /person/calendar/classes:
    get:
      tags:
      - Person
      operationId: getPersonClassCalendar
      summary: Class calendar of the authenticated user
      security:
      - fenixOAuth: []
      x-documented-only: true
      responses:
        '200':
          description: Class calendar.
        '401':
          $ref: '#/components/responses/Unauthorized'
  /person/calendar/evaluations:
    get:
      tags:
      - Person
      operationId: getPersonEvaluationCalendar
      summary: Evaluation calendar of the authenticated user
      security:
      - fenixOAuth: []
      x-documented-only: true
      responses:
        '200':
          description: Evaluation calendar.
        '401':
          $ref: '#/components/responses/Unauthorized'
  /person/evaluations:
    get:
      tags:
      - Person
      operationId: getPersonEvaluations
      summary: Written evaluations available to the authenticated user
      security:
      - fenixOAuth: []
      x-documented-only: true
      responses:
        '200':
          description: Evaluation list.
        '401':
          $ref: '#/components/responses/Unauthorized'
  /person/evaluations/{id}:
    put:
      tags:
      - Person
      operationId: enrolPersonEvaluation
      summary: Enrol in or withdraw from an evaluation
      security:
      - fenixOAuth: []
      parameters:
      - $ref: '#/components/parameters/id'
      x-documented-only: true
      responses:
        '200':
          description: Updated enrolment state.
        '401':
          $ref: '#/components/responses/Unauthorized'
  /person/payments:
    get:
      tags:
      - Person
      operationId: getPersonPayments
      summary: Payment and tuition records of the authenticated user
      security:
      - fenixOAuth: []
      x-documented-only: true
      responses:
        '200':
          description: Payment records.
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    OAuthError:
      type: object
      properties:
        error:
          type: string
        error_description:
          type: string
  responses:
    Unauthorized:
      description: Missing or malformed OAuth access token. Observed 2026-09-01.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/OAuthError'
          examples:
            live:
              externalValue: ../examples/fenixedu-error-401.json
  parameters:
    id:
      name: id
      in: path
      required: true
      description: FenixEdu external identifier of the resource.
      schema:
        type: string
  securitySchemes:
    fenixOAuth:
      type: oauth2
      description: Bennu OAuth 2.0, the authorization layer shipped with FenixEdu and copyrighted by Instituto Superior Tecnico. Applications are registered by an authenticated member of the institution; the access scopes granted are chosen per application at registration time and are not enumerated in a machine-readable document, so no scope names are asserted here.
      flows:
        authorizationCode:
          authorizationUrl: https://fenix.tecnico.ulisboa.pt/oauth/userdialog
          tokenUrl: https://fenix.tecnico.ulisboa.pt/oauth/access_token
          scopes: {}