University of Waterloo Locations API

The Locations API from University of Waterloo — 6 operation(s) for locations.

Operations 6

GET /v3/Locations Get all building location data
GET /v3/Locations/geojson Get all building location data as GEO JSON
GET /v3/Locations/{locationCode} Gets building by matched building code, case insensitive
GET /v3/Locations/{locationCode}/geojson Gets building by matched building code, case insensitive, as GEO JSON
GET /v3/Locations/search/{locationName} Gets buildings by matched building name, contains, case insensitive
GET /v3/Locations/search/{locationName}/geojson Gets buildings by matched building name, contains, case insensitive, as GEO JSON

Documentation

Specifications

Schemas & Data

Other Resources

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-waterloo-locations-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-waterloo-locations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Waterloo OpenData Locations API
  version: v3
servers:
- url: https://openapi.data.uwaterloo.ca
  description: University of Waterloo OpenData API v3
security:
- apiKey: []
tags:
- name: Locations
paths:
  /v3/Locations:
    get:
      tags:
      - Locations
      summary: Get all building location data
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Location'
  /v3/Locations/geojson:
    get:
      tags:
      - Locations
      summary: Get all building location data as GEO JSON
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocationGeo'
  /v3/Locations/{locationCode}:
    get:
      tags:
      - Locations
      summary: Gets building by matched building code, case insensitive
      parameters:
      - name: locationCode
        in: path
        description: Building code to match
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Location'
  /v3/Locations/{locationCode}/geojson:
    get:
      tags:
      - Locations
      summary: Gets building by matched building code, case insensitive, as GEO JSON
      parameters:
      - name: locationCode
        in: path
        description: Building code to match
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocationGeo'
  /v3/Locations/search/{locationName}:
    get:
      tags:
      - Locations
      summary: Gets buildings by matched building name, contains, case insensitive
      parameters:
      - name: locationName
        in: path
        description: Text to match in building name
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Location'
  /v3/Locations/search/{locationName}/geojson:
    get:
      tags:
      - Locations
      summary: Gets buildings by matched building name, contains, case insensitive, as GEO JSON
      parameters:
      - name: locationName
        in: path
        description: Text to match in building name
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocationGeo'
components:
  schemas:
    Geometry:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
          description: Type of geometry
          readOnly: true
        coordinates:
          type:
          - array
          - 'null'
          items:
            type: number
            format: double
          description: Latitude and Longitude collection of this location
      additionalProperties: false
      description: Represents Geometry data of the Feature
    Location:
      type: object
      properties:
        buildingId:
          type:
          - string
          - 'null'
          description: Unique identifier for this building
        buildingCode:
          type:
          - string
          - 'null'
          description: Alpha-numeric building code
        parentBuildingCode:
          type:
          - string
          - 'null'
          description: Unofficial, alpha-numeric building code that represents the parent location
        buildingName:
          type:
          - string
          - 'null'
          description: Display name of the building
        alternateBuildingNames:
          type:
          - array
          - 'null'
          items:
            type: string
          description: Unofficial, collection of alternate building display names
        latitude:
          type:
          - number
          - 'null'
          description: Latitude co-ordinate of this location
          format: double
        longitude:
          type:
          - number
          - 'null'
          description: Longitude co-ordinate of this location
          format: double
      additionalProperties: false
      description: Model representing a Location for the Buildings dataset
    LocationGeo:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
          description: Type property of GEO JSON collection
          readOnly: true
        features:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Feature'
          description: Features of this collection
      additionalProperties: false
      description: Model representing a Location for the Buildings dataset in GEO JSON format
    Feature:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
          description: Type of Feature
          readOnly: true
        properties:
          $ref: '#/components/schemas/Location'
        geometry:
          $ref: '#/components/schemas/Geometry'
      additionalProperties: false
      description: Feature of location collection
  securitySchemes:
    apiKey:
      type: apiKey
      description: Custom API key authentication
      name: x-api-key
      in: header