Sanfernandocoffeeco APIsanfernandocoffeeco.com ↗
Access San Fernando Coffee Company menus, prices, and customization options across all locations via 3 structured JSON endpoints.
What is the Sanfernandocoffeeco API?
The San Fernando Coffee Company API gives developers structured access to menu data across all locations through 3 endpoints. get_menu returns a full location menu in one call — every category, item, base price, stock status, and image URL. get_menu_item goes deeper, returning modifier groups (size, milk type, add-ons) with per-option price adjustments. list_locations enumerates every store with its slug, coordinates, address, and hours.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/ea42f2ae-aedd-451b-8f12-3a49c5a109a3/list_locations' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace sanfernandocoffeeco-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: browse San Fernando Coffee locations, menus, and item customizations."""
from parse_apis.sanfernandocoffeeco_com_api import SanFernandoCoffee, InputNotFound
client = SanFernandoCoffee()
# List all store locations, capped to 5.
for loc in client.locations.list(limit=5):
print(loc.name, loc.city, loc.state, loc.zipcode)
# Pick the first location and fetch its full menu.
location = client.locations.list(limit=1).first()
if location is not None:
menu_data = location.menu()
print(f"{menu_data.location_name} — {menu_data.item_count} items")
print(f" {menu_data.address.address1}, {menu_data.address.city}, {menu_data.address.state}")
# Walk each menu's groups and print item summaries.
for menu in menu_data.menus:
print(f"\n{menu.name}")
for group in menu.groups:
print(f" {group.name}")
for item in group.items:
stock = "" if not item.out_of_stock else " [OUT OF STOCK]"
print(f" ${item.price:.2f} — {item.name}{stock}")
# Drill into the first item's detail to see customization options.
first_group = next((g for m in menu_data.menus for g in m.groups if g.items), None)
if first_group is not None:
summary = first_group.items[0]
try:
detail = location.items.get(item_id=summary.item_id)
except InputNotFound:
print(f"Item {summary.item_id} not found at this location")
else:
print(f"\nDetail: {detail.name} — ${detail.price:.2f}")
print(f" {detail.description}")
for mg in detail.modifier_groups:
req = "required" if mg.required else "optional"
print(f" [{req}] {mg.name} (pick {mg.min_selections}–{mg.max_selections})")
for opt in mg.options:
adj = f" +${opt.price:.2f}" if opt.price else ""
print(f" {opt.name}{adj}")
print("\nexercised: locations.list / location.menu / location.items.get")
Lists every San Fernando Coffee Company store that appears in the site's location picker, sorted by name. Each entry carries the location_slug accepted by get_menu and get_menu_item, the street address, phone, coordinates and the published weekly hours (an empty hours list means the site publishes none for that store). One round trip, no pagination.
No input parameters required.
{
"type": "object",
"fields": {
"total": "number of locations returned",
"locations": "array of store objects: location_slug (key for get_menu/get_menu_item), name, address, city, state, zipcode, phone, latitude, longitude, hours (array of {days, open, close} in 24h HH:MM local time)"
},
"sample": {
"data": {
"total": 20,
"locations": [
{
"city": "Arcadia",
"name": "ARCADIA",
"hours": [
{
"days": [
"monday",
"tuesday",
"wednesday"
],
"open": "07:00",
"close": "15:00"
}
],
"phone": "+1 (555) 012-3456",
"state": "CA",
"address": "289 West Huntington Drive, Suite 101",
"zipcode": "91007",
"latitude": 34.135727,
"longitude": -118.042282,
"location_slug": "san-fernando-coffee-inc-arcadia-289-west-huntington-drive-suite-101"
}
]
},
"status": "success"
}
}About the Sanfernandocoffeeco API
Location Discovery
list_locations returns every San Fernando Coffee Company store available for online ordering. Each entry includes a location_slug — the identifier you pass to the other two endpoints — plus address, city, state, zipcode, phone, latitude, longitude, and published weekly hours. If the hours array is empty for a location, the site has not published hours for that store.
Full Menu by Location
get_menu accepts an optional location_slug parameter (defaults to the Rialto store when omitted) and returns the entire ordering menu in a single response. The top-level menus array is structured as menus → groups → items. Each item exposes item_id, name, description, group_id, a base price, an out_of_stock flag, and an image_url. The response also echoes location_name, location_slug, address, and an item_count for quick validation.
Item Customization Options
get_menu_item accepts a required item_id (a UUID sourced from get_menu) and an optional location_slug. It returns the item's full detail including calories (null when unpublished), prices (all base price points), and the modifier groups that drive the ordering form — things like size selection, milk alternatives, and extra shots. Each modifier group carries its selection rules, and every option within it includes its name and price adjustment in USD. If the item_id does not exist on the specified location's menu, the endpoint returns an error rather than empty data.
The Sanfernandocoffeeco API is a managed, monitored endpoint for sanfernandocoffeeco.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when sanfernandocoffeeco.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official sanfernandocoffeeco.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a menu display for a third-party ordering or kiosk app using item names, prices, and images from
get_menu. - Show real-time out-of-stock warnings in a custom ordering UI by reading the
out_of_stockflag per item. - Populate a drink configurator with size, milk, and add-on choices and their upcharges from
get_menu_itemmodifier groups. - Render a store locator with coordinates, addresses, and hours sourced from
list_locations. - Compare base prices and modifier pricing across multiple locations by iterating
location_slugvalues. - Sync a local menu cache and detect price or availability changes by polling
get_menuand diffingitem_countand prices. - Build a calorie-aware menu filter using the
caloriesfield returned byget_menu_item.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does San Fernando Coffee Company have an official developer API?+
What does `get_menu_item` return that `get_menu` does not?+
get_menu returns every item's base fields (name, price, description, stock flag, image) but does not include modifier groups. get_menu_item adds the full customization layer: modifier group names, selection rules (e.g. choose exactly one, choose up to three), and every option with its name and USD price adjustment. Calorie counts are also only present in get_menu_item responses.What happens if I call `get_menu` without a `location_slug`?+
location_slug parameter is optional on both get_menu and get_menu_item. When omitted, both endpoints default to the Rialto store at 466 East Foothill Boulevard. To retrieve data for another store, pass the location_slug value from list_locations.Does the API cover past orders, loyalty accounts, or nutritional details beyond calories?+
get_menu_item when the site publishes them, but other nutritional fields (fat, sodium, allergens) are not currently exposed. You can fork this API on Parse and revise it to add an endpoint targeting any additional nutritional data the site makes available.Are hours always populated in `list_locations`?+
hours field is an array of the published weekly schedule for each store. When a location has not published hours on the ordering site, the array is empty. Address, phone, and coordinates are still returned for those locations.