University of Warsaw Building Attribute API

The BuildingAttribute API from University of Warsaw — 3 operation(s) for buildingattribute.

Operations 7

GET /api/v1/BuildingAttribute/{code} Czytanie informacji o atrybucie budynku o danym kodzie #
PUT /api/v1/BuildingAttribute/{code} Aktualizacja atrybutu budynku o podanym kodzie #
DELETE /api/v1/BuildingAttribute/{code} Usunięcie atrybutu budynku #
GET /api/v1/BuildingAttribute/Category Listowanie danych o kategoriach atrybutu budynków #
PUT /api/v1/BuildingAttribute/Category Aktualizacja kategorii atrybutu budynku #
GET /api/v1/BuildingAttribute Listowanie danych o atrybutach budynków #
POST /api/v1/BuildingAttribute Dodanie atrybutu budynku #

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-buildingattribute-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-buildingattribute-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaskier Building Attribute API
  version: 1.2.25
servers:
- url: https://api.jaskier.uw.edu.pl
tags:
- name: BuildingAttribute
paths:
  /api/v1/BuildingAttribute/{code}:
    get:
      tags:
      - BuildingAttribute
      summary: Czytanie informacji o atrybucie budynku o danym kodzie
      operationId: getBuildingAttributeByCode
      parameters:
      - name: code
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/BuildingAttributeResponse'
      security:
      - Authorization: []
    put:
      tags:
      - BuildingAttribute
      summary: Aktualizacja atrybutu budynku o podanym kodzie
      operationId: updateBuildingAttribute
      parameters:
      - name: code
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BuildingAttributeRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/BuildingAttributeResponse'
      security:
      - Authorization: []
    delete:
      tags:
      - BuildingAttribute
      summary: Usunięcie atrybutu budynku
      operationId: deleteBuildingAttribute
      parameters:
      - name: code
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      security:
      - Authorization: []
  /api/v1/BuildingAttribute/Category:
    get:
      tags:
      - BuildingAttribute
      summary: Listowanie danych o kategoriach atrybutu budynków
      operationId: findAllBuildingAttributesCategories_1
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BuildingAttributeCategoryResponse'
      security:
      - Authorization: []
    put:
      tags:
      - BuildingAttribute
      summary: Aktualizacja kategorii atrybutu budynku
      operationId: updateBuildingAttributeCategory
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpsertBuildingAttributeCategoryRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BuildingAttributeCategoryResponse'
      security:
      - Authorization: []
  /api/v1/BuildingAttribute:
    get:
      tags:
      - BuildingAttribute
      summary: Listowanie danych o atrybutach budynków
      operationId: findAllBuildingAttributes
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BuildingAttributeResponse'
      security:
      - Authorization: []
    post:
      tags:
      - BuildingAttribute
      summary: Dodanie atrybutu budynku
      operationId: addBuildingAttribute
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BuildingAttributeRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/BuildingAttributeResponse'
      security:
      - Authorization: []
components:
  schemas:
    BuildingAttributeResponse:
      type: object
      properties:
        code:
          type: string
        namePl:
          type: string
        nameEn:
          type: string
        category:
          type: string
    BuildingAttributeCategoryRequest:
      required:
      - code
      type: object
      properties:
        code:
          type: string
        namePl:
          type: string
        nameEn:
          type: string
    BuildingAttributeRequest:
      required:
      - category
      - code
      type: object
      properties:
        code:
          type: string
        namePl:
          type: string
        nameEn:
          type: string
        category:
          type: string
    UpsertBuildingAttributeCategoryRequest:
      required:
      - categories
      type: object
      properties:
        categories:
          uniqueItems: true
          type: array
          items:
            $ref: '#/components/schemas/BuildingAttributeCategoryRequest'
    BuildingAttributeCategoryResponse:
      type: object
      properties:
        code:
          type: string
        namePl:
          type: string
        nameEn:
          type: string
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header