Starbucks · Schema

Menu Item

A Starbucks menu item including beverages, food, and merchandise with pricing, customization options, and nutritional data.

CoffeeFood ServiceLoyaltyOrderingRetailFortune 500

Properties

Name Type Description
id string Unique identifier for the menu item
name string Display name of the menu item
description string Marketing description of the menu item
price number Base price in USD
imageUrl string URL to the product image
categoryId string Identifier of the parent menu category
available boolean Whether the item is currently available for ordering
sizes array Available size options for the item
customizations array Available customization options such as milk type, syrups, and extras
calories integer Calorie count for the standard preparation
allergens array List of allergens present in the item
View JSON Schema on GitHub

JSON Schema

starbucks-menu-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12",
  "$id": "https://api.starbucks.com/schemas/menu-item",
  "title": "Menu Item",
  "description": "A Starbucks menu item including beverages, food, and merchandise with pricing, customization options, and nutritional data.",
  "type": "object",
  "required": ["id", "name", "categoryId"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the menu item"
    },
    "name": {
      "type": "string",
      "description": "Display name of the menu item",
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "description": "Marketing description of the menu item"
    },
    "price": {
      "type": "number",
      "format": "float",
      "minimum": 0,
      "description": "Base price in USD"
    },
    "imageUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL to the product image"
    },
    "categoryId": {
      "type": "string",
      "description": "Identifier of the parent menu category"
    },
    "available": {
      "type": "boolean",
      "description": "Whether the item is currently available for ordering",
      "default": true
    },
    "sizes": {
      "type": "array",
      "description": "Available size options for the item",
      "items": {
        "type": "object",
        "required": ["id", "name", "price"],
        "properties": {
          "id": {
            "type": "string",
            "description": "Size identifier (e.g., tall, grande, venti)"
          },
          "name": {
            "type": "string",
            "description": "Display name of the size"
          },
          "price": {
            "type": "number",
            "format": "float",
            "minimum": 0,
            "description": "Price for this size"
          }
        }
      }
    },
    "customizations": {
      "type": "array",
      "description": "Available customization options such as milk type, syrups, and extras",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Customization category (e.g., milk, syrup, topping)"
          },
          "options": {
            "type": "array",
            "items": {
              "type": "object",
              "required": ["id", "name"],
              "properties": {
                "id": {
                  "type": "string"
                },
                "name": {
                  "type": "string"
                },
                "priceModifier": {
                  "type": "number",
                  "description": "Price change when this option is selected"
                }
              }
            }
          }
        }
      }
    },
    "calories": {
      "type": "integer",
      "minimum": 0,
      "description": "Calorie count for the standard preparation"
    },
    "allergens": {
      "type": "array",
      "description": "List of allergens present in the item",
      "items": {
        "type": "string",
        "enum": ["dairy", "eggs", "fish", "shellfish", "tree_nuts", "peanuts", "wheat", "soy", "sesame"]
      }
    }
  },
  "examples": [
    {
      "id": "item_caramel_macchiato",
      "name": "Caramel Macchiato",
      "description": "Freshly steamed milk with vanilla-flavored syrup marked with espresso and topped with caramel drizzle.",
      "price": 5.75,
      "imageUrl": "https://api.starbucks.com/images/caramel-macchiato.jpg",
      "categoryId": "cat_hot_coffees",
      "available": true,
      "calories": 250,
      "allergens": ["dairy", "soy"],
      "sizes": [
        {"id": "tall", "name": "Tall", "price": 4.95},
        {"id": "grande", "name": "Grande", "price": 5.75},
        {"id": "venti", "name": "Venti", "price": 6.45}
      ]
    }
  ]
}

Work with this as data

Every JSON Schema 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 schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • 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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/starbucks-menu-item"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.