University of Warsaw Business Entity API

The BusinessEntity API from University of Warsaw — 3 operation(s) for businessentity.

Operations 5

GET /api/v1/BusinessEntity/{businessEntityId} Czytanie informacji o instytucji z podanym id #
PUT /api/v1/BusinessEntity/{businessEntityId} Aktualizacja instytucji #
GET /api/v1/BusinessEntity Listowanie podmiotów #
POST /api/v1/BusinessEntity Dodawanie instytucji #
GET /api/v1/BusinessEntity/Acro/{acro} Czytanie informacji o instytucji po akronimie #

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-businessentity-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-businessentity-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Business Entity API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: BusinessEntity
paths:
  /api/v1/BusinessEntity/{businessEntityId}:
    get:
      tags:
      - BusinessEntity
      summary: Czytanie informacji o instytucji z podanym id
      operationId: getBusinessEntityById
      parameters:
      - name: businessEntityId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/BusinessEntityResponse'
      security:
      - Authorization: []
    put:
      tags:
      - BusinessEntity
      summary: Aktualizacja instytucji
      operationId: updateBusinessEntity
      parameters:
      - name: businessEntityId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessEntityRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/BusinessEntityResponse'
      security:
      - Authorization: []
  /api/v1/BusinessEntity:
    get:
      tags:
      - BusinessEntity
      summary: Listowanie podmiotów
      operationId: queryForBusinessEntities
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BusinessEntityResponse'
      security:
      - Authorization: []
    post:
      tags:
      - BusinessEntity
      summary: Dodawanie instytucji
      operationId: addBusinessEntity
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BusinessEntityRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/BusinessEntityResponse'
      security:
      - Authorization: []
  /api/v1/BusinessEntity/Acro/{acro}:
    get:
      tags:
      - BusinessEntity
      summary: Czytanie informacji o instytucji po akronimie
      operationId: getBusinessEntityByAcro
      parameters:
      - name: acro
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/BusinessEntityResponse'
      security:
      - Authorization: []
components:
  schemas:
    BusinessEntityRequest:
      required:
      - acro
      - name
      type: object
      properties:
        acro:
          maxLength: 16
          minLength: 0
          type: string
          description: Akronim podmiotu - wartość unikalna
        name:
          maxLength: 128
          minLength: 0
          type: string
          description: Nazwa podmiotu
        type:
          type: string
          description: Typ organizacji
          enum:
          - UNIVERSITY
          - SCIENTIFIC_INSTITUTION
          - ENTREPRENEUR
          - LOCAL_GOVERNMENT_UNIT
          - NON_GOVERNMENTAL_ORGANIZATION
          - STATE_ADMINISTRATION
          - PATENT_OFFICE
          - NATURAL_PERSON
          - OTHER
        countryCode:
          type: string
          description: Kod kraju
      description: Podmiot
    BusinessEntityResponse:
      type: object
      properties:
        id:
          type: string
          description: Id podmiotu, id techniczne
        acro:
          type: string
          description: Akronim podmiotu - wartość unikalna
        name:
          type: string
          description: Nazwa podmiotu
        type:
          type: string
          description: Typ podmiotu
        countryCode:
          type: string
          description: Kod kraju
      description: Podmiot
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header