Starbucks
Overview
Coffee chain (archetype: food/retail). starbucks.com — store finder, store details, and menu browsing via BFF API proxy interception.
Workflows
Find nearby stores
searchStores(lat, lng) → nearby stores with distance, hours, amenities → storeNumber, latitude, longitude
Get store details
searchStores(lat, lng) → storeNumber, latitude, longitude
getStoreDetail(storeNumber, lat, lng) ← searchStores → full schedule, amenities, mobile ordering status
Browse menu
getMenu() → categories, subcategories, products with sizes and availability
Operations
| Operation |
Intent |
Key Input |
Key Output |
Notes |
| searchStores |
find nearby stores |
lat, lng |
storeNumber, name, distance, address, hours, amenities |
returns up to 50 stores sorted by distance |
| getStoreDetail |
full store info |
storeNumber ← searchStores, lat ← searchStores, lng ← searchStores |
schedule, amenities, mobileOrdering, address, coordinates |
uses nearby search + filter |
| getMenu |
browse menu |
(none) |
categories, products, sizes, availability |
featured products populated; most subcategories list structure only |
Quick Start
# Find stores near San Francisco
openweb starbucks exec searchStores '{"lat": 37.7749, "lng": -122.4194}'
# Get full detail for a specific store
openweb starbucks exec getStoreDetail '{"storeNumber": "53646-283069", "lat": 37.7772, "lng": -122.4193}'
# Get the menu
openweb starbucks exec getMenu '{}'
1---2name: starbucks3description: Starbucks4---5# Starbucks67## Overview8Coffee chain (archetype: food/retail). starbucks.com — store finder, store details, and menu browsing via BFF API proxy interception.910## Workflows1112### Find nearby stores131. `searchStores(lat, lng)` → nearby stores with distance, hours, amenities → `storeNumber`, `latitude`, `longitude`1415### Get store details161. `searchStores(lat, lng)` → `storeNumber`, `latitude`, `longitude`172. `getStoreDetail(storeNumber, lat, lng)` ← searchStores → full schedule, amenities, mobile ordering status1819### Browse menu201. `getMenu()` → categories, subcategories, products with sizes and availability2122## Operations2324| Operation | Intent | Key Input | Key Output | Notes |25|-----------|--------|-----------|------------|-------|26| searchStores | find nearby stores | lat, lng | storeNumber, name, distance, address, hours, amenities | returns up to 50 stores sorted by distance |27| getStoreDetail | full store info | storeNumber ← searchStores, lat ← searchStores, lng ← searchStores | schedule, amenities, mobileOrdering, address, coordinates | uses nearby search + filter |28| getMenu | browse menu | (none) | categories, products, sizes, availability | featured products populated; most subcategories list structure only |2930## Quick Start3132```bash33# Find stores near San Francisco34openweb starbucks exec searchStores '{"lat": 37.7749, "lng": -122.4194}'3536# Get full detail for a specific store37openweb starbucks exec getStoreDetail '{"storeNumber": "53646-283069", "lat": 37.7772, "lng": -122.4193}'3839# Get the menu40openweb starbucks exec getMenu '{}'41```