Aalto University Buildings API

Aalto Building related data

Operations 3

GET /facilities/v1/buildings/{code} Find building information by id #
GET /facilities/v1/buildings Retreive information about all buildings #
GET /facilities/v1/building Retrieve detailed building information #

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/aalto-buildings-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

aalto-buildings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aalto facilities Buildings API
  description: Aalto API to query Aalto facility data
  termsOfService: http://swagger.io/terms/
  contact:
    email: it-integ@aalto.fi
  version: 1.0.2
servers:
- url: https://facilities.api.aalto.fi/api/aalto
  description: PROD
- url: https://facilities-test.api.aalto.fi/api/aalto
  description: TEST
tags:
- name: Buildings
  description: Aalto Building related data
paths:
  /facilities/v1/buildings/{code}:
    get:
      tags:
      - Buildings
      summary: Find building information by id
      parameters:
      - name: code
        in: path
        description: Building code
        required: true
        schema:
          type: string
      - name: includeBookingStatus
        in: query
        description: Include booking status in the response
        schema:
          type: boolean
      - name: noCache
        in: query
        description: Disable cache
        schema:
          type: boolean
      - name: user_key
        in: query
        description: Aalto API gateway user key
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/buildingDetailsType'
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/errorResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/errorResponse'
      operationId: getFacilitiesV1BuildingsByCode
      x-operation-id-source: derived
  /facilities/v1/buildings:
    get:
      tags:
      - Buildings
      summary: Retreive information about all buildings
      parameters:
      - name: noCache
        in: query
        description: Disable cache
        schema:
          type: boolean
      - name: showAll
        in: query
        description: If true, return all buildings. If not set only returns buildings that are set visible in Asio
        schema:
          type: boolean
          default: false
      - name: user_key
        in: query
        description: Aalto API gateway user key
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/buildingsType'
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/errorResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/errorResponse'
      operationId: getFacilitiesV1Buildings
      x-operation-id-source: derived
  /facilities/v1/building:
    get:
      tags:
      - Buildings
      summary: Retrieve detailed building information
      parameters:
      - name: buildingCode
        in: query
        description: Building code
        required: true
        schema:
          type: string
      - name: includeBookingStatus
        in: query
        description: Include booking status in the response
        schema:
          type: boolean
      - name: address
        in: query
        description: Building street address
        schema:
          type: string
      - name: zipCode
        in: query
        description: Building address zip code
        schema:
          type: string
      - name: noCache
        in: query
        description: Disable cache
        schema:
          type: boolean
      - name: user_key
        in: query
        description: Aalto API gateway user key
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/buildingDetailsType'
        '400':
          description: Bad request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/errorResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/errorResponse'
      operationId: getFacilitiesV1Building
      x-operation-id-source: derived
components:
  schemas:
    buildingType:
      type: object
      properties:
        buildingCode:
          type: string
        nickName:
          $ref: '#/components/schemas/nickNameType'
        address:
          $ref: '#/components/schemas/addressType'
    RoomType:
      type: object
      properties:
        ID:
          type: string
        categories:
          type: array
          items:
            type: string
        coordinates:
          type: array
          items:
            type: number
        currentBookingStatus:
          type: string
    buildingDetailsType:
      type: object
      properties:
        buildingCode:
          type: string
        nickName:
          $ref: '#/components/schemas/nickNameType'
        address:
          $ref: '#/components/schemas/addressType'
        openingHours:
          $ref: '#/components/schemas/openingHoursType'
        Rooms:
          type: array
          items:
            $ref: '#/components/schemas/RoomType'
    errorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/errorType'
    dailyOpeningHoursType:
      type: object
      properties:
        aklo:
          type: string
        lklo:
          type: string
    openingHoursType:
      type: object
      properties:
        ma:
          $ref: '#/components/schemas/dailyOpeningHoursType'
        ti:
          $ref: '#/components/schemas/dailyOpeningHoursType'
        ke:
          $ref: '#/components/schemas/dailyOpeningHoursType'
        to:
          $ref: '#/components/schemas/dailyOpeningHoursType'
        pe:
          $ref: '#/components/schemas/dailyOpeningHoursType'
        la:
          $ref: '#/components/schemas/dailyOpeningHoursType'
        su:
          $ref: '#/components/schemas/dailyOpeningHoursType'
    buildingsType:
      type: array
      items:
        $ref: '#/components/schemas/buildingType'
    errorType:
      type: object
      properties:
        code:
          type: number
        message:
          type: string
    nickNameType:
      type: object
      properties:
        fi:
          type: string
        sv:
          type: string
        en:
          type: string
    addressType:
      type: object
      properties:
        addressLine:
          type: string
        postalCode:
          type: string
        municipality:
          type: string