University of Warsaw Profile My Uw API

The ProfileMyUw API from University of Warsaw — 7 operation(s) for profilemyuw.

Operations 7

GET /api/v1/MyUw/Profile Listowanie danych o profilach z flagą is_publicly_visible = true #
GET /api/v1/MyUw/Profile/{id} Czytanie profilu z podanym publicznym id i flagą is_publicly_visible = true #
GET /api/v1/MyUw/Profile/{id}/Theses Czytanie listy publikacji, których autorem jest profil z danym publicznym id #
GET /api/v1/MyUw/Profile/{id}/Project Czytanie listy projektów, których członkiem jest wybrany profil z danym… #
GET /api/v1/MyUw/Profile/{id}/Picture Download public profile picture 1 #
GET /api/v1/MyUw/Profile/{id}/Patent Czytanie listy patentów, których członkiem jest wybrany profil z danym… #
GET /api/v1/MyUw/Profile/{id}/Courses Czytanie listy kursów powiązanych z profilem z danym publicznym id #

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-warsaw-profilemyuw-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-warsaw-profilemyuw-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Profile My Uw API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: ProfileMyUw
paths:
  /api/v1/MyUw/Profile:
    get:
      tags:
      - ProfileMyUw
      summary: Listowanie danych o profilach z flagą is_publicly_visible = true
      operationId: queryForProfileForMyUw
      parameters:
      - name: $skip
        in: query
        required: false
        schema:
          type: integer
          format: int64
          default: 0
      - name: $top
        in: query
        required: false
        schema:
          maximum: 1000
          type: integer
          format: int64
          default: 10
      - name: $inlinecount
        in: query
        required: false
        schema:
          type: string
          default: allpages
      - name: $orderby
        in: query
        required: false
        schema:
          type: string
          default: firstName,middleNames,lastName
      - name: $filter
        in: query
        required: false
        schema:
          type: string
          default: ()
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponseProfileMyUwResponse'
      security:
      - Authorization: []
  /api/v1/MyUw/Profile/{id}:
    get:
      tags:
      - ProfileMyUw
      summary: Czytanie profilu z podanym publicznym id i flagą is_publicly_visible = true
      operationId: getProfileByIdForMyUw
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProfileMyUwResponse'
      security:
      - Authorization: []
  /api/v1/MyUw/Profile/{id}/Theses:
    get:
      tags:
      - ProfileMyUw
      summary: Czytanie listy publikacji, których autorem jest profil z danym publicznym id
      description: 'Czytanie listy publikacji, których autorem jest wybrany profil.


        Filtry:

        * role

        - gdy brak -> zwraca wszystkie publikacje niezależnie od roli'
      operationId: getProfileThesesById_1
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: role
        in: query
        required: false
        schema:
          type: string
          enum:
          - AUTHOR
          - SUPERVISOR
          - EDITOR
          - TRANSLATOR
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfilePublicationResponse'
      security:
      - Authorization: []
  /api/v1/MyUw/Profile/{id}/Project:
    get:
      tags:
      - ProfileMyUw
      summary: Czytanie listy projektów, których członkiem jest wybrany profil z danym…
      operationId: getProfileProjectAuthorById_2
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileProjectResponse'
      security:
      - Authorization: []
  /api/v1/MyUw/Profile/{id}/Picture:
    get:
      tags:
      - ProfileMyUw
      operationId: downloadPublicProfilePicture_1
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
      summary: Download public profile picture 1
      x-summary-source: derived
  /api/v1/MyUw/Profile/{id}/Patent:
    get:
      tags:
      - ProfileMyUw
      summary: Czytanie listy patentów, których członkiem jest wybrany profil z danym…
      operationId: getProfilePatentProfileById_1
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfilePatentResponse'
      security:
      - Authorization: []
  /api/v1/MyUw/Profile/{id}/Courses:
    get:
      tags:
      - ProfileMyUw
      summary: Czytanie listy kursów powiązanych z profilem z danym publicznym id
      operationId: getProfileCoursesById_2
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProfileCourseResponse'
      security:
      - Authorization: []
components:
  schemas:
    ProfileMyUwResponse:
      type: object
      properties:
        profileId:
          type: string
        profilePublicId:
          type: string
        name:
          type: string
        firstName:
          type: string
        middleNames:
          type: string
        lastName:
          type: string
        emailsOther:
          type: array
          items:
            type: string
        email:
          type: string
        phone:
          type: string
        profileRoles:
          type: array
          items:
            type: string
        isPubliclyVisible:
          type: boolean
        personId:
          type: string
        personRoles:
          type: array
          items:
            type: string
        degree:
          type: string
        articleId:
          type: string
        orcid:
          type: string
        pbnId:
          type: string
        uidPolon:
          type: string
        uidPolonDokt:
          type: string
        uidPolonStud:
          type: string
        keyw:
          type: array
          items:
            type: string
        units:
          type: array
          items:
            $ref: '#/components/schemas/MyUwUnitResponse'
        unitsAll:
          type: array
          items:
            type: string
        scienceDisciplines:
          type: array
          items:
            type: string
        publicationsCount:
          type: integer
          format: int64
        promotedPublicationsCount:
          type: integer
          format: int64
        patentsCount:
          type: integer
          format: int64
        projectsCount:
          type: integer
          format: int64
        buildings:
          type: array
          items:
            $ref: '#/components/schemas/MyUwBuildingResponse'
    ProfileCourseResponse:
      type: object
      properties:
        profileId:
          type: string
        courseId:
          type: string
        title:
          type: string
        titlePl:
          type: string
        titleEn:
          type: string
        subjectCode:
          type: string
        year:
          type: integer
          format: int32
        term:
          type: string
        startDate:
          type: string
          format: date
        endDate:
          type: string
          format: date
    ProfilePublicationResponse:
      type: object
      properties:
        profileId:
          type: string
        publicationId:
          type: string
        title:
          type: string
        titlePl:
          type: string
        titleEn:
          type: string
        publicationDate:
          type: string
        role:
          type: string
        year:
          type: integer
          format: int32
        types:
          type: array
          items:
            type: string
    ProfilePatentResponse:
      type: object
      properties:
        profileId:
          type: string
        patentId:
          type: string
        title:
          type: string
        titlePl:
          type: string
        titleEn:
          type: string
        applicationNumber:
          type: string
        consentForEvaluation:
          type: boolean
        fraction:
          type: number
          format: double
        decisionDate:
          type: string
          format: date
    ProfileProjectResponse:
      type: object
      properties:
        projectId:
          type: string
        title:
          type: string
        titlePl:
          type: string
        titleEn:
          type: string
        startDate:
          type: string
          format: date
        endDate:
          type: string
          format: date
        roles:
          type: array
          items:
            $ref: '#/components/schemas/ProjectPublicMemberRoleResponse'
    OdataResponseProfileMyUwResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ProfileMyUwResponse'
        totalCount:
          type: integer
          format: int32
    MyUwBuildingResponse:
      type: object
      properties:
        publicBuildingId:
          type: string
        namePl:
          type: string
        nameEn:
          type: string
        roomNumber:
          type: string
    ProjectPublicMemberRoleResponse:
      type: object
      properties:
        namePl:
          type: string
        nameEn:
          type: string
        orderIndex:
          type: integer
          format: int32
    MyUwUnitResponse:
      type: object
      properties:
        code:
          type: string
        namePl:
          type: string
        nameEn:
          type: string
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header