Toast Groups API

The Groups API from Toast — 1 operation(s) for groups.

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/toast-groups-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

toast-groups-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  version: 1.0.0
  title: Toast Authentication Groups API
  description: 'The authentication API returns an authentication token that you can present

    when your integration client software uses other Toast APIs. For more

    information about authentication, see [the Toast Developer

    Guide](https://doc.toasttab.com/doc/devguide/authentication.html).

    '
  termsOfService: https://pos.toasttab.com/api-terms-of-use
  contact:
    name: Toast developer support
host: toast-api-server
basePath: /authentication/v1
schemes:
- https
consumes:
- application/json
produces:
- application/json
tags:
- name: Groups
paths:
  /groups/{managementGroupGUID}/restaurants:
    get:
      operationId: groupsManagementGroupGuidRestaurantsGet
      summary: Toast Get Restaurants in a Management Group
      description: "Returns an array of `Restaurant` objects that are a part of the \nrestaurant management group you specify in the \n`managementGroupGUID` path parameter. Each `Restaurant` object \ncontains the unique Toast platform identifier for the restaurant in \nits `guid` value.\n"
      parameters:
      - name: managementGroupGUID
        in: path
        type: string
        description: 'The GUID of the restaurant management group.

          '
        required: true
      - name: Toast-Restaurant-External-ID
        description: "The Toast GUID of one restaurant location in the management \ngroup.\n"
        in: header
        type: string
        format: string
        required: true
      responses:
        '200':
          description: 'An array of `Restaurant` objects.

            '
          schema:
            type: array
            items:
              $ref: '#/definitions/Restaurant'
      security:
      - oauth2:
        - restaurants:read
      tags:
      - Groups
definitions:
  Restaurant:
    type: object
    description: 'The Toast POS GUID for a restaurant

      '
    properties:
      guid:
        type: string
        description: 'The unique identifier that the Toast POS assigns to a

          restaurant.

          '
externalDocs:
  description: Authentication developer guide
  url: https://doc.toasttab.com/doc/devguide/authentication.html