University of Waterloo FoodServices API

The FoodServices API from University of Waterloo — 6 operation(s) for foodservices.

Operations 6

GET /v3/FoodServices/outlets Get all food service Outlet data
GET /v3/FoodServices/outlets/{id} Get specific food services Outlet data by Id
GET /v3/FoodServices/outlets/{name} Get specific food services Outlet data by Outlet name
GET /v3/FoodServices/franchises Get all food service Franchise data
GET /v3/FoodServices/franchises/{id} Get specific food sercices Franchise data by Id
GET /v3/FoodServices/franchises/{name} Get specific food services Franchise data by Franchise name

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-foodservices-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-foodservices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Waterloo OpenData Food Services API
  version: v3
servers:
- url: https://openapi.data.uwaterloo.ca
  description: University of Waterloo OpenData API v3
security:
- apiKey: []
tags:
- name: FoodServices
paths:
  /v3/FoodServices/outlets:
    get:
      tags:
      - FoodServices
      summary: Get all food service Outlet data
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FoodServicesOutlets'
  /v3/FoodServices/outlets/{id}:
    get:
      tags:
      - FoodServices
      summary: Get specific food services Outlet data by Id
      parameters:
      - name: id
        in: path
        description: WCMS object ID representing the Outlet
        required: true
        schema:
          minimum: 0
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FoodServicesOutlet'
  /v3/FoodServices/outlets/{name}:
    get:
      tags:
      - FoodServices
      summary: Get specific food services Outlet data by Outlet name
      parameters:
      - name: name
        in: path
        description: Name to filter Outlet by
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FoodServicesOutlet'
  /v3/FoodServices/franchises:
    get:
      tags:
      - FoodServices
      summary: Get all food service Franchise data
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FoodServicesFranchises'
  /v3/FoodServices/franchises/{id}:
    get:
      tags:
      - FoodServices
      summary: Get specific food sercices Franchise data by Id
      parameters:
      - name: id
        in: path
        description: WCMS object ID representing the Franchise
        required: true
        schema:
          minimum: 0
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FoodServicesFranchise'
  /v3/FoodServices/franchises/{name}:
    get:
      tags:
      - FoodServices
      summary: Get specific food services Franchise data by Franchise name
      parameters:
      - name: name
        in: path
        description: Name to filter Franchise by
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FoodServicesFranchise'
components:
  schemas:
    Cuisine:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        self:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
      additionalProperties: false
    FoodServicesFranchises:
      type: object
      properties:
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FoodServicesFranchise'
        count:
          type: integer
          format: int32
        self:
          $ref: '#/components/schemas/FoodServicesFranchisesSelf'
      additionalProperties: false
    ComboImage:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        url:
          type:
          - string
          - 'null'
        filemime:
          type:
          - string
          - 'null'
        filesize:
          type:
          - string
          - 'null'
        width:
          type:
          - string
          - 'null'
        height:
          type:
          - string
          - 'null'
        alt:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
      additionalProperties: false
    HoursChange:
      type: object
      properties:
        value:
          type: string
          format: date-time
        value2:
          type: string
          format: date-time
        timezone_db:
          type:
          - string
          - 'null'
        date_type:
          type:
          - string
          - 'null'
      additionalProperties: false
    Und:
      type: object
      properties:
        value:
          type:
          - string
          - 'null'
        revision_id:
          type:
          - string
          - 'null'
      additionalProperties: false
    Rdf_Mapping:
      type: object
      properties:
        rdftype:
          type:
          - array
          - 'null'
          items:
            type: string
        title:
          $ref: '#/components/schemas/Title'
        created:
          $ref: '#/components/schemas/Created'
        changed:
          $ref: '#/components/schemas/Changed'
        body:
          $ref: '#/components/schemas/Body'
        uid:
          $ref: '#/components/schemas/Uid'
        name:
          $ref: '#/components/schemas/Name'
        comment_count:
          $ref: '#/components/schemas/Comment_Count'
        last_activity:
          $ref: '#/components/schemas/Last_Activity'
      additionalProperties: false
    Workbench_Moderation:
      type: object
      properties:
        current:
          $ref: '#/components/schemas/Current'
        published:
          $ref: '#/components/schemas/Published'
        my_revision:
          $ref: '#/components/schemas/My_Revision'
      additionalProperties: false
    Created:
      type: object
      properties:
        predicates:
          type:
          - array
          - 'null'
          items:
            type: string
        datatype:
          type:
          - string
          - 'null'
        callback:
          type:
          - string
          - 'null'
      additionalProperties: false
    Field_Combos:
      type: object
      properties:
        und:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Und'
      additionalProperties: false
    IndividualItem:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        photo:
          $ref: '#/components/schemas/IndividualItemPhoto'
        price:
          type:
          - string
          - 'null'
        calories: {}
      additionalProperties: false
    Comment_Count:
      type: object
      properties:
        predicates:
          type:
          - array
          - 'null'
          items:
            type: string
        datatype:
          type:
          - string
          - 'null'
      additionalProperties: false
    Robots:
      type: object
      properties:
        value:
          $ref: '#/components/schemas/Value'
      additionalProperties: false
    FoodServicesOutletsSelf:
      type: object
      properties:
        title:
          type:
          - string
          - 'null'
        href:
          type:
          - string
          - 'null'
      additionalProperties: false
    Translations:
      type: object
      properties:
        original:
          type:
          - string
          - 'null'
        data:
          $ref: '#/components/schemas/Data'
      additionalProperties: false
    En:
      type: object
      properties:
        value:
          type:
          - string
          - 'null'
        format: {}
        safe_value:
          type:
          - string
          - 'null'
      additionalProperties: false
    FoodServicesOutletImage:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        url:
          type:
          - string
          - 'null'
        filemime:
          type:
          - string
          - 'null'
        filesize:
          type:
          - string
          - 'null'
        width:
          type:
          - string
          - 'null'
        height:
          type:
          - string
          - 'null'
        alt:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
      additionalProperties: false
    Combo:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        image:
          $ref: '#/components/schemas/ComboImage'
        options:
          type:
          - string
          - 'null'
        item:
          type:
          - string
          - 'null'
        price:
          type:
          - string
          - 'null'
        calories: {}
      additionalProperties: false
    Data:
      type: object
      properties:
        en:
          $ref: '#/components/schemas/En2'
      additionalProperties: false
    Metatags:
      type: object
      properties:
        en:
          $ref: '#/components/schemas/En1'
      additionalProperties: false
    Locpick:
      type: object
      properties:
        user_latitude:
          type:
          - string
          - 'null'
        user_longitude:
          type:
          - string
          - 'null'
      additionalProperties: false
    FranchiseMenu:
      type: object
      properties:
        vid:
          type:
          - string
          - 'null'
        uid:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        log:
          type:
          - string
          - 'null'
        status:
          type:
          - string
          - 'null'
        comment:
          type:
          - string
          - 'null'
        promote:
          type:
          - string
          - 'null'
        sticky:
          type:
          - string
          - 'null'
        vuuid:
          type:
          - string
          - 'null'
        nid:
          type:
          - string
          - 'null'
        type:
          type:
          - string
          - 'null'
        language:
          type:
          - string
          - 'null'
        created:
          type:
          - string
          - 'null'
        changed:
          type:
          - string
          - 'null'
        tnid:
          type:
          - string
          - 'null'
        translate:
          type:
          - string
          - 'null'
        uuid:
          type:
          - string
          - 'null'
        revision_timestamp:
          type:
          - string
          - 'null'
        revision_uid:
          type:
          - string
          - 'null'
        field_addons: {}
        field_combos:
          $ref: '#/components/schemas/Field_Combos'
        field_franchise_logo:
          $ref: '#/components/schemas/Field_Franchise_Logo'
        field_individual_items: {}
        title_field:
          $ref: '#/components/schemas/Title_Field'
        metatags:
          $ref: '#/components/schemas/Metatags'
        rdf_mapping:
          $ref: '#/components/schemas/Rdf_Mapping'
        path:
          $ref: '#/components/schemas/Path'
        translations:
          $ref: '#/components/schemas/Translations'
        title_original:
          type:
          - string
          - 'null'
        entity_translation_handler_id:
          type:
          - string
          - 'null'
        title_language:
          type:
          - string
          - 'null'
        cid:
          type:
          - string
          - 'null'
        last_comment_timestamp:
          type:
          - string
          - 'null'
        last_comment_name: {}
        last_comment_uid:
          type:
          - string
          - 'null'
        comment_count:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        picture:
          type:
          - string
          - 'null'
        data:
          type:
          - string
          - 'null'
        uw_page_settings_node_enable:
          type:
          - string
          - 'null'
        workbench_moderation:
          $ref: '#/components/schemas/Workbench_Moderation'
      additionalProperties: false
    Published:
      type: object
      properties:
        hid:
          type:
          - string
          - 'null'
        vid:
          type:
          - string
          - 'null'
        nid:
          type:
          - string
          - 'null'
        from_state:
          type:
          - string
          - 'null'
        state:
          type:
          - string
          - 'null'
        uid:
          type:
          - string
          - 'null'
        stamp:
          type:
          - string
          - 'null'
        published:
          type:
          - string
          - 'null'
        is_current:
          type: integer
          format: int32
        title:
          type:
          - string
          - 'null'
        timestamp:
          type:
          - string
          - 'null'
      additionalProperties: false
    FoodServicesFranchisesSelf:
      type: object
      properties:
        title:
          type:
          - string
          - 'null'
        href:
          type:
          - string
          - 'null'
      additionalProperties: false
    Logo:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        url:
          type:
          - string
          - 'null'
        filemime:
          type:
          - string
          - 'null'
        filesize:
          type:
          - string
          - 'null'
        width:
          type:
          - string
          - 'null'
        height:
          type:
          - string
          - 'null'
        alt:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
      additionalProperties: false
    Value:
      type: object
      properties:
        index:
          type: integer
          format: int32
        follow:
          type: integer
          format: int32
        noindex:
          type: integer
          format: int32
        nofollow:
          type: integer
          format: int32
        noarchive:
          type: integer
          format: int32
        nosnippet:
          type: integer
          format: int32
        noodp:
          type: integer
          format: int32
        noydir:
          type: integer
          format: int32
        noimageindex:
          type: integer
          format: int32
        notranslate:
          type: integer
          format: int32
      additionalProperties: false
    FoodServicesOutlets:
      type: object
      properties:
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FoodServicesOutlet'
        count:
          type: integer
          format: int32
        self:
          $ref: '#/components/schemas/FoodServicesOutletsSelf'
      additionalProperties: false
    Title_Field:
      type: object
      properties:
        en:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/En'
      additionalProperties: false
    En2:
      type: object
      properties:
        entity_type:
          type:
          - string
          - 'null'
        entity_id:
          type:
          - string
          - 'null'
        revision_id:
          type:
          - string
          - 'null'
        language:
          type:
          - string
          - 'null'
        source:
          type:
          - string
          - 'null'
        uid:
          type:
          - string
          - 'null'
        status:
          type:
          - string
          - 'null'
        translate:
          type:
          - string
          - 'null'
        created:
          type:
          - string
          - 'null'
        changed:
          type:
          - string
          - 'null'
      additionalProperties: false
    Title:
      type: object
      properties:
        predicates:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    Current:
      type: object
      properties:
        hid:
          type:
          - string
          - 'null'
        vid:
          type:
          - string
          - 'null'
        nid:
          type:
          - string
          - 'null'
        from_state:
          type:
          - string
          - 'null'
        state:
          type:
          - string
          - 'null'
        uid:
          type:
          - string
          - 'null'
        stamp:
          type:
          - string
          - 'null'
        published:
          type:
          - string
          - 'null'
        is_current:
          type: integer
          format: int32
        title:
          type:
          - string
          - 'null'
        timestamp:
          type:
          - string
          - 'null'
      additionalProperties: false
    Body:
      type: object
      properties:
        predicates:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    FoodServicesFranchise:
      type: object
      properties:
        id:
          type: integer
          format: int32
        self:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        logo:
          $ref: '#/components/schemas/Logo'
        combos:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Combo'
        individualitems:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/IndividualItem'
        addons:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Addon'
      additionalProperties: false
    Addon:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        photo: {}
        price:
          type:
          - string
          - 'null'
        calories: {}
      additionalProperties: false
    Name:
      type: object
      properties:
        predicates:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    PaymentAccepted:
      type: object
      properties:
        tid:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
      additionalProperties: false
    OutletType:
      type: object
      properties:
        tid:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
      additionalProperties: false
    IndividualItemPhoto:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        url:
          type:
          - string
          - 'null'
        filemime:
          type:
          - string
          - 'null'
        filesize:
          type:
          - string
          - 'null'
        width:
          type:
          - string
          - 'null'
        height:
          type:
          - string
          - 'null'
        alt:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
      additionalProperties: false
    Und1:
      type: object
      properties:
        fid:
          type:
          - string
          - 'null'
        uid:
          type:
          - string
          - 'null'
        filename:
          type:
          - string
          - 'null'
        uri:
          type:
          - string
          - 'null'
        filemime:
          type:
          - string
          - 'null'
        filesize:
          type:
          - string
          - 'null'
        status:
          type:
          - string
          - 'null'
        timestamp:
          type:
          - string
          - 'null'
        uuid:
          type:
          - string
          - 'null'
        rdf_mapping:
          type:
          - array
          - 'null'
          items: {}
        focal_point:
          type:
          - string
          - 'null'
        alt:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        width:
          type:
          - string
          - 'null'
        height:
          type:
          - string
          - 'null'
      additionalProperties: false
    LocationLink:
      type: object
      properties:
        url:
          type:
          - string
          - 'null'
        title: {}
        attributes:
          type:
          - array
          - 'null'
          items: {}
        original_title: {}
        original_url:
          type:
          - string
          - 'null'
      additionalProperties: false
    My_Revision:
      type: object
      properties:
        hid:
          type:
          - string
          - 'null'
        vid:
          type:
          - string
          - 'null'
        nid:
          type:
          - string
          - 'null'
        from_state:
          type:
          - string
          - 'null'
        state:
          type:
          - string
          - 'null'
        uid:
          type:
          - string
          - 'null'
        stamp:
          type:
          - string
          - 'null'
        published:
          type:
          - string
          - 'null'
        is_current:
          type: integer
          format: int32
        title:
          type:
          - string
          - 'null'
        timestamp:
          type:
          - string
          - 'null'
      additionalProperties: false
    OpeningHour:
      type: object
      properties:
        day:
          type:
          - string
          - 'null'
        starthours:
          type:
          - string
          - 'null'
        endhours:
          type:
          - string
          - 'null'
        comment:
          type:
          - string
          - 'null'
      additionalProperties: false
    Field_Franchise_Logo:
      type: object
      properties:
        und:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Und1'
      additionalProperties: false
    Path:
      type: object
      properties:
        pid:
          type:
          - string
          - 'null'
        source:
          type:
          - string
          - 'null'
        alias:
          type:
          - string
          - 'null'
        language:
          type:
          - string
          - 'null'
        pathauto:
          type:
          - string
          - 'null'
      additionalProperties: false
    FoodServicesOutletPhoto:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        url:
          type:
          - string
          - 'null'
        filemime:
          type:
          - string
          - 'null'
        filesize:
          type:
          - string
          - 'null'
        width:
          type:
          - string
          - 'null'
        height:
          type:
          - string
          - 'null'
        alt:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
      additionalProperties: false
    En1:
      type: object
      properties:
        robots:
          $ref: '#/components/schemas/Robots'
      additionalProperties: false
    Uid:
      type: object
      properties:
        predicates:
          type:
          - array
          - 'null'
          items:
            type: string
        type:
          type:
          - string
          - 'null'
      additionalProperties: false
    OutletLocation:
      type: object
      properties:
        lid:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        street:
          type:
          - string
          - 'null'
        additional:
          type:
          - string
          - 'null'
        city:
          type:
          - string
          - 'null'
        province:
          type:
          - string
          - 'null'
        postal_code:
          type:
          - string
          - 'null'
        country:
          type:
          - string
          - 'null'
        latitude:
          type:
          - string
          - 'null'
        longitude:
          type:
          - string
          - 'null'
        source:
          type:
          - string
          - 'null'
        is_primary:
          type:
          - string
          - 'null'
        locpick:
          $ref: '#/components/schemas/Locpick'
        province_name:
          type:
          - string
          - 'null'
        country_name:
          type:
          - string
          - 'null'
      additionalProperties: false
    FoodServicesOutlet:
      type: object
      properties:
        id:
          type: integer
          format: int32
        self:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        image:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FoodServicesOutletImage'
        photo:
          $ref: '#/components/schemas/FoodServicesOutletPhoto'
        features:
          type:
          - string
          - 'null'
        outlettype:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/OutletType'
        outletlocation:
          type:
          - string
          - 'null'
        locationlink:
          $ref: '#/components/schemas/LocationLink'
        description:
          type:
          - string
          - 'null'
        location:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/OutletLocation'
        summary:
          type:
          - string
          - 'null'
        cuisine:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Cuisine'
        openinghours:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/OpeningHour'
        paymentaccepted:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PaymentAccepted'
        closed:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Closed'
        hourschange:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/HoursChange'
        notice:
          type:
          - string
          - 'null'
        franchisemenu:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/FranchiseMenu'
        sticky:
          type:
          - string
          - 'null'
        created:
          type:
          - string
          - 'null'
      additionalProperties: false
    Changed:
      type: object
      properties:
        predicates:
          type:
          - array
          - 'null'
          items:
            type: string
        datatype:
          type:
          - string
          - 'null'
        callback:
          type:
          - string
          - 'null'
      additionalProperties: false
    Last_Activity:
      type: object
      properties:
        predicates:
          type:
          - array
          - 'null'
          items:
            type: string
        datatype:
          type:
          - string
          - 'null'
        callback:
          type:
          - string
          - 'null'
      additionalProperties: false
    Closed:
      type: object
      properties:
        value:
          type: string
          format: date-time
        value2:
          type: string
          format: date-time
        timezone_db:
          type:
          - string
          - 'null'
        date_type:
          type:
          - string
          - 'null'
      additionalProperties: false
  securitySchemes:
    apiKey:
      type: apiKey
      description: Custom API key authentication
      name: x-api-key
      in: header