University of Warsaw University Info API

The UniversityInfo API from University of Warsaw — 3 operation(s) for universityinfo.

Operations 6

GET /api/v1/UniversityInfo/{id}/ApplicationRequirements Czytanie wymagań aplikacji dla uniwersytetu #
PUT /api/v1/UniversityInfo/{id}/ApplicationRequirements Ustawianie wymagań aplikacji dla uniwersytetu #
DELETE /api/v1/UniversityInfo/{id}/ApplicationRequirements Usuwanie wymagań aplikacji dla uniwersytetu #
GET /api/v1/UniversityInfo Czytanie listy informacji o uniwersytetach #
POST /api/v1/UniversityInfo Dodawanie informacji dla uniwersytetu #
GET /api/v1/UniversityInfo/{id} Czytanie informacji o uniwersytecie #

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-universityinfo-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-universityinfo-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier University Info API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: UniversityInfo
paths:
  /api/v1/UniversityInfo/{id}/ApplicationRequirements:
    get:
      tags:
      - UniversityInfo
      summary: Czytanie wymagań aplikacji dla uniwersytetu
      operationId: getApplicationRequirements
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ArticlePreviewResponse'
      security:
      - Authorization: []
    put:
      tags:
      - UniversityInfo
      summary: Ustawianie wymagań aplikacji dla uniwersytetu
      operationId: setApplicationRequirements
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: articleId
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ArticlePreviewResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - UniversityInfo
      summary: Usuwanie wymagań aplikacji dla uniwersytetu
      operationId: removeApplicationRequirements
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
  /api/v1/UniversityInfo:
    get:
      tags:
      - UniversityInfo
      summary: Czytanie listy informacji o uniwersytetach
      operationId: findAllUniversityInfos
      parameters:
      - name: universities
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - CUNI
            - UAH
            - SU
            - KU
            - UNIMI
            - UW
            - UNIGE
            - PARIS_2
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UniversityInfoResponse'
      security:
      - Authorization: []
    post:
      tags:
      - UniversityInfo
      summary: Dodawanie informacji dla uniwersytetu
      operationId: addUniversityInfo
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UniversityInfoCreateRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/UniversityInfoResponse'
      security:
      - Authorization: []
  /api/v1/UniversityInfo/{id}:
    get:
      tags:
      - UniversityInfo
      summary: Czytanie informacji o uniwersytecie
      operationId: getByUniversityInfoById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/UniversityInfoResponse'
      security:
      - Authorization: []
components:
  schemas:
    UniversityInfoResponse:
      type: object
      properties:
        id:
          type: string
        university:
          type: string
          enum:
          - CUNI
          - UAH
          - SU
          - KU
          - UNIMI
          - UW
          - UNIGE
          - PARIS_2
    UniversityInfoCreateRequest:
      required:
      - university
      type: object
      properties:
        university:
          type: string
          enum:
          - CUNI
          - UAH
          - SU
          - KU
          - UNIMI
          - UW
          - UNIGE
          - PARIS_2
    ArticlePreviewResponse:
      type: object
      properties:
        id:
          type: string
        titlePl:
          type: string
        titleEn:
          type: string
        contentPl:
          type: string
        contentEn:
          type: string
        visibleFrom:
          type: string
          format: date
        visibleTo:
          type: string
          format: date
        signification:
          type: string
        tags:
          type: array
          items:
            type: string
        visible:
          type: boolean
        created:
          type: string
          format: date-time
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header