Aalto Facilities API

Buildings, building details, opening hours, rooms and room reservations across Aalto's Espoo campus. OpenAPI 3.0.1, version 1.0.2, contact it-integ@aalto.fi, served from facilities.api.aalto.fi. Documented on the portal as "Facilities API : Buildings and Reservations". The contract declares no securityScheme, but the gateway rejects an anonymous call with 403 — a real gap between the documented and deployed auth surface.

Operations 5

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
GET /reservations/v1/reservations/{id} Find a reservation by id
GET /reservations/v1/reservations Return all of the reservations #

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/facilities"
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-facilities-api-openapi.yml Raw ↑
# Fetched 2026-08-30 from https://3scale.apps.ocp4.aalto.fi/api_docs/services/8.json
# method: searched  |  x-operator: institution  |  source: Aalto API Gateway public ActiveDocs index
openapi: 3.0.1
info:
  title: Aalto facilities 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: Reservations
  description: Room reservations.
- 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'
  /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'
  /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'
  /reservations/v1/reservations/{id}:
    get:
      tags:
      - Reservations
      summary: Find a reservation by id
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: user_key
        in: query
        description: Aalto API gateway user key
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content: {}
        '404':
          description: Could not find a reservation matching the given id
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/errorResponse'
            example:
              example:
                error: Could not find a reservation matching the given id
  /reservations/v1/reservations:
    get:
      tags:
      - Reservations
      summary: Return all of the reservations
      operationId: getReservations
      parameters:
      - name: spaceCodes
        in: query
        description: Comma-separated list of space identifiers
        schema:
          type: string
      - name: startDate
        in: query
        description: search from YYYY-MM-DD
        required: true
        schema:
          type: string
      - name: endDate
        in: query
        description: search to YYYY-MM-DD
        required: true
        schema:
          type: string
      - name: phoneNumber
        in: query
        schema:
          type: string
      - name: email
        in: query
        schema:
          type: string
      - name: user_key
        in: query
        description: Aalto API gateway user key
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Reservation'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorResponse'
            example:
              example:
                error: Invalid start date
components:
  schemas:
    Reservation:
      required:
      - name
      - phoneNumber
      - spaceCode
      type: object
      properties:
        id:
          type: integer
          format: int64
          example: 123456780
        name:
          type: string
          description: Event name
          example: TEST Event
        buildingCode:
          type: string
          example: R001
        spaceCode:
          type: string
          description: Code of the reserved space. Normally room number
          example: U598
        date:
          type: string
          description: Reservation date (e.g. 2020-12-25)
          format: date
          example: '2020-12-25T00:00:00.000Z'
        startTime:
          type: string
          description: Reservation start time (e.g. 14:00)
          example: 840
        endTime:
          type: string
          description: Reservation end time (e.g. 14:30)
          example: 870
        duration:
          type: integer
          description: Duration in minutes
          format: int64
          example: 30
        persons:
          type: integer
          description: Number of persons
          format: int64
          example: 1
        type:
          type: string
          description: Usage type. Possible values are Internal (S), Planning (L), Student (A), External
            (H)
          example: Student
        phoneNumber:
          type: string
          example: 123456789
        email:
          type: string
          example: example@email.com
      description: Represents a reservation.
    errorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/errorType'
    errorType:
      type: object
      properties:
        code:
          type: number
        message:
          type: string
    buildingsType:
      type: array
      items:
        $ref: '#/components/schemas/buildingType'
    buildingType:
      type: object
      properties:
        buildingCode:
          type: string
        nickName:
          $ref: '#/components/schemas/nickNameType'
        address:
          $ref: '#/components/schemas/addressType'
    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
    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'
    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'
    dailyOpeningHoursType:
      type: object
      properties:
        aklo:
          type: string
        lklo:
          type: string
    RoomType:
      type: object
      properties:
        ID:
          type: string
        categories:
          type: array
          items:
            type: string
        coordinates:
          type: array
          items:
            type: number
        currentBookingStatus:
          type: string