Starbucks · Schema
Starbucks Store
A Starbucks retail store location with address, hours, amenities, and service availability.
CoffeeFood ServiceLoyaltyOrderingRetailFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the store |
| name | string | Store display name |
| address | object | |
| coordinates | object | |
| phone | string | Store phone number |
| timezone | string | Store timezone (IANA format) |
| hours | array | Weekly operating hours |
| amenities | array | Available store amenities |
| services | array | Available services at this store |
| mobileOrderingEnabled | boolean | Whether mobile ordering is available at this store |
| driveThru | boolean | Whether the store has a drive-through lane |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12",
"$id": "https://api.starbucks.com/schemas/store",
"title": "Starbucks Store",
"description": "A Starbucks retail store location with address, hours, amenities, and service availability.",
"type": "object",
"required": ["id", "name", "address", "coordinates"],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the store"
},
"name": {
"type": "string",
"description": "Store display name"
},
"address": {
"type": "object",
"required": ["street", "city", "state", "postalCode", "country"],
"properties": {
"street": {"type": "string"},
"city": {"type": "string"},
"state": {"type": "string"},
"postalCode": {"type": "string"},
"country": {"type": "string", "default": "US"}
}
},
"coordinates": {
"type": "object",
"required": ["latitude", "longitude"],
"properties": {
"latitude": {
"type": "number",
"format": "float",
"minimum": -90,
"maximum": 90
},
"longitude": {
"type": "number",
"format": "float",
"minimum": -180,
"maximum": 180
}
}
},
"phone": {
"type": "string",
"description": "Store phone number"
},
"timezone": {
"type": "string",
"description": "Store timezone (IANA format)",
"example": "America/New_York"
},
"hours": {
"type": "array",
"description": "Weekly operating hours",
"items": {
"type": "object",
"properties": {
"day": {
"type": "string",
"enum": ["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]
},
"open": {
"type": "string",
"pattern": "^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$",
"description": "Opening time (HH:MM)"
},
"close": {
"type": "string",
"pattern": "^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$",
"description": "Closing time (HH:MM)"
}
}
}
},
"amenities": {
"type": "array",
"description": "Available store amenities",
"items": {
"type": "string",
"enum": ["wifi", "outdoor_seating", "indoor_seating", "parking", "accessible"]
}
},
"services": {
"type": "array",
"description": "Available services at this store",
"items": {
"type": "string",
"enum": ["mobile_order", "drive_thru", "curbside", "delivery", "reserve"]
}
},
"mobileOrderingEnabled": {
"type": "boolean",
"description": "Whether mobile ordering is available at this store"
},
"driveThru": {
"type": "boolean",
"description": "Whether the store has a drive-through lane"
}
}
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/starbucks-store"
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.