University of Warsaw Assets API

The Assets API from University of Warsaw — 5 operation(s) for assets.

Operations 7

GET /api/v1/Asset/{sapId}/Details Czytaj szczegóły ze środka trwałego #
POST /api/v1/Asset/{sapId}/Details Aktualizuj informacje o środku trwałym #
GET /api/v1/Asset Listowanie danych o środkach trwałych #
GET /api/v1/Asset/{sapId} Czytanie informacji o środku trwałym #
DELETE /api/v1/Asset/{sapId} Usuwanie środka trwałego #
GET /api/v1/Asset/{sapId}/ResearchSet Czytaj zbiory aparatury powiązane ze środkiem trwałym #
GET /api/v1/Asset/{sapId}/Projects Czytaj projekty powiązane ze środkiem trwałym #

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-assets-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-assets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Assets API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: Assets
paths:
  /api/v1/Asset/{sapId}/Details:
    get:
      tags:
      - Assets
      summary: Czytaj szczegóły ze środka trwałego
      operationId: getAssetDetails
      parameters:
      - name: sapId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AssetDetailsResponse'
      security:
      - Authorization: []
    post:
      tags:
      - Assets
      summary: Aktualizuj informacje o środku trwałym
      operationId: updateAsset
      parameters:
      - name: sapId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssetDetailsRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AssetDetailsResponse'
      security:
      - Authorization: []
  /api/v1/Asset:
    get:
      tags:
      - Assets
      summary: Listowanie danych o środkach trwałych
      operationId: queryForAssets
      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
      - name: $orderby
        in: query
        required: false
        schema:
          type: string
          default: name
      - name: $filter
        in: query
        required: false
        schema:
          type: string
          default: ()
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OdataResponseAssetQueryResponse'
      security:
      - Authorization: []
  /api/v1/Asset/{sapId}:
    get:
      tags:
      - Assets
      summary: Czytanie informacji o środku trwałym
      operationId: getAssetById
      parameters:
      - name: sapId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/AssetResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - Assets
      summary: Usuwanie środka trwałego
      operationId: removeAsset
      parameters:
      - name: sapId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
  /api/v1/Asset/{sapId}/ResearchSet:
    get:
      tags:
      - Assets
      summary: Czytaj zbiory aparatury powiązane ze środkiem trwałym
      operationId: getAssetResearchSet
      parameters:
      - name: sapId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AssetResearchSetResponse'
      security:
      - Authorization: []
  /api/v1/Asset/{sapId}/Projects:
    get:
      tags:
      - Assets
      summary: Czytaj projekty powiązane ze środkiem trwałym
      operationId: getAssetProjects
      parameters:
      - name: sapId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AssetProjectResponse'
      security:
      - Authorization: []
components:
  schemas:
    AssetResponse:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        initialValue:
          type: number
        depreciationAmount:
          type: number
        currencyCode:
          type: string
        amortizationMethod:
          type: string
        inventoryNumber:
          type: string
        initialSapId:
          type: string
        sapId:
          type: string
        departmentCode:
          type: string
        unitName:
          type: string
        uwCode:
          type: string
        objectType:
          type: string
        grwName:
          type: string
        kst:
          type: string
        documentNumber:
          type: string
        admissionDate:
          type: string
        liquidationDate:
          type: string
        otDate:
          type: string
          format: date
        otNumber:
          type: string
        purchaseDate:
          type: string
        personId:
          type: string
        description:
          type: string
        shelfLifeFrom:
          type: string
          format: date
        shelfLifeTo:
          type: string
          format: date
        commercialUsage:
          type: boolean
        commercialUsageFrom:
          type: string
          format: date
        purposeOfUse:
          type: string
        yearAcquisition:
          type: string
    AssetResearchSetResponse:
      type: object
      properties:
        cfSetId:
          type: string
        name:
          type: string
        creationTime:
          type: string
          format: date-time
    OdataResponseAssetQueryResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/AssetQueryResponse'
        totalCount:
          type: integer
          format: int32
    AssetDetailsResponse:
      type: object
      properties:
        sapId:
          type: string
        otDate:
          type: string
          format: date
        otNumber:
          type: string
        shelfLifeFrom:
          type: string
          format: date
        shelfLifeTo:
          type: string
          format: date
        purposeOfUsage:
          type: string
        commercialUsage:
          type: boolean
        commercialUsageFrom:
          type: string
          format: date
        description:
          type: string
    AssetProjectResponse:
      type: object
      properties:
        id:
          type: string
        startDate:
          type: string
          format: date
        endDate:
          type: string
          format: date
        acro:
          type: string
        projectName:
          type: string
        projectNumber:
          type: string
    AssetQueryResponse:
      type: object
      properties:
        id:
          type: string
        sapId:
          type: string
        name:
          type: string
        departmentCode:
          type: string
        inventoryNumber:
          type: string
        grwName:
          type: string
        initialValue:
          type: number
        objectType:
          type: string
        description:
          type: string
        shelfLifeFrom:
          type: string
          format: date
        shelfLifeTo:
          type: string
          format: date
        commercialUsage:
          type: boolean
        commercialUsageFrom:
          type: string
          format: date
        purposeOfUse:
          type: string
        yearAcquisition:
          type: string
    AssetDetailsRequest:
      type: object
      properties:
        otDate:
          type: string
          format: date
        otNumber:
          type: string
        shelfLifeFrom:
          type: string
          format: date
        shelfLifeTo:
          type: string
          format: date
        purposeOfUsage:
          type: string
        commercialUsage:
          type: boolean
        commercialUsageFrom:
          type: string
          format: date
        description:
          maxLength: 5000
          minLength: 0
          type: string
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header