Discover/Blue Bottle Coffee API
live

Blue Bottle Coffee APIbluebottlecoffee.com

Access Blue Bottle Coffee product listings, roast levels, tasting notes, variant pricing, and cafe locations across the US via a structured REST API.

Endpoint health
verified 4d ago
list_all_products
get_product_details
list_products_by_category
list_cafes
search_cafes_by_location
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Blue Bottle Coffee API?

The Blue Bottle Coffee API exposes 5 endpoints covering the full product catalog, per-product variant pricing, and cafe locations across US regions. Use list_all_products to retrieve every item in the shop with roast level and tasting notes, get_product_details to pull variant-level pricing and customer reviews by slug, or list_cafes to get structured address data for every Blue Bottle location.

Try it

No input parameters required.

api.parse.bot/scraper/47b1ad91-88e8-49b3-8200-57541a683d81/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/47b1ad91-88e8-49b3-8200-57541a683d81/list_all_products' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

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 bluebottlecoffee-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.

"""Blue Bottle Coffee: browse catalog, drill into product details, find cafes."""
from parse_apis.blue_bottle_coffee_api import BlueBottle, CategorySlug, ProductNotFound

client = BlueBottle()

# List espresso products by category using the enum
for product in client.productsummaries.by_category(category_slug=CategorySlug.ESPRESSO, limit=3):
    print(product.name, product.roast_level)

# Drill into one product's full details via the summary→detail navigation
summary = client.productsummaries.list(limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.tasting_notes, detail.description[:80])
    for v in detail.variants[:2]:
        print(v.name, v.price, v.for_sale)

# Direct product lookup by slug
try:
    product = client.products.get(slug="hayes-valley-espresso")
    print(product.name, product.roast_level)
except ProductNotFound as exc:
    print(f"Product not found: {exc.slug}")

# Search cafes by location
for cafe in client.cafes.search(query="New York", limit=3):
    print(cafe.name, cafe.address.street, cafe.address.locality, cafe.region)

print("exercised: productsummaries.by_category / productsummaries.list / summary.details / products.get / cafes.search")
All endpoints · 5 totalmissing one? ·

List all coffee products available in the Blue Bottle Coffee shop. Returns product names, slugs, tasting notes, roast levels, and images. Single-page endpoint returning the complete catalog.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of products returned",
    "products": "array of product objects with name, slug, tasting_notes, roast_level, and image fields"
  },
  "sample": {
    "data": {
      "total": 25,
      "products": [
        {
          "name": "Hayes Valley Espresso",
          "slug": "hayes-valley-espresso",
          "image": "/2024/2024 Updated Packaging/Hayes Valley Espresso/M1_HayesValleyEspresso_Hero_1.png",
          "roast_level": "Dark Roast",
          "tasting_notes": "Baking Chocolate, Orange Zest, Brown Sugar"
        }
      ]
    },
    "status": "success"
  }
}

About the Blue Bottle Coffee API

Product Catalog

The list_all_products endpoint returns every product currently in the Blue Bottle shop, including each product's name, slug, roast_level, tasting_notes, and image. To narrow results to a specific category, use list_products_by_category with a category_slug such as best-sellers, espresso, single-origin, or brew-tools. Both endpoints return a total count alongside the products array.

Product Details and Variants

get_product_details accepts a slug (e.g. hayes-valley-espresso, bella-donovan) and returns the full record for that product. The variants array lists each purchasable option with id, name, price in integer cents, sku, for_sale status, and an option field describing the variant (such as grind type or size). The endpoint also returns a description string, roast_level, tasting_notes, and a metadata array of meta tag objects useful for SEO analysis. A reviews array is included but may be empty for some products.

Cafe Locations

list_cafes returns all Blue Bottle cafe locations with a structured address object containing street, locality, district, postalCode, and countryCode fields, plus a region label covering areas like Northern California, Southern California, New York, Las Vegas, Chicago, Boston, and Washington DC. To filter by location, search_cafes_by_location accepts an optional query string matched against cafe name, address, and region fields — passing San Francisco or Broadway returns only matching cafes with the same address structure.

Reliability & maintenanceVerified

The Blue Bottle Coffee API is a managed, monitored endpoint for bluebottlecoffee.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bluebottlecoffee.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 bluebottlecoffee.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.

Last verified
4d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a coffee product comparison tool using variant pricing from get_product_details across roast levels.
  • Power a store locator map by feeding list_cafes address data into a mapping library.
  • Track which products are currently for sale by checking the for_sale field in the variants array.
  • Aggregate tasting notes and roast levels from list_all_products to analyze catalog patterns.
  • Filter the espresso-specific product lineup using list_products_by_category with category_slug: espresso.
  • Monitor SKU and variant availability changes over time using sku and for_sale fields.
  • Retrieve structured cafe address data by city or neighborhood using search_cafes_by_location.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Blue Bottle Coffee offer an official developer API?+
Blue Bottle Coffee does not publish a public developer API or developer documentation. This Parse API provides structured access to their product and location data.
What does `get_product_details` return that `list_all_products` does not?+
get_product_details adds the variants array (with per-variant price in cents, sku, for_sale, and option), a description string, a metadata array of meta tag objects, and a reviews array. The list endpoints return only name, slug, roast_level, tasting_notes, and image.
Does the API return cafe hours or phone numbers?+
Not currently. list_cafes and search_cafes_by_location return name, slug, region, and a structured address with street, locality, district, postalCode, and countryCode. Hours and contact details are not included. You can fork this API on Parse and revise it to add an endpoint that retrieves those fields for individual cafe slugs.
Are all product categories accessible via `list_products_by_category`?+
The confirmed working category slugs are best-sellers, brew-tools, espresso, and single-origin. Other category slugs may not return results. You can fork this API on Parse and revise it to add support for additional category slugs if Blue Bottle adds new ones.
Can I retrieve historical pricing or track price changes over time?+
The API returns current variant pricing at the time of the request — price is an integer in cents for each variant. It does not expose pricing history. You can fork this API on Parse and revise it to log responses over time and build a price-tracking layer on top.
Page content last updated . Spec covers 5 endpoints from bluebottlecoffee.com.
Related APIs in Food DiningSee all →
intelligentsia.com API
Browse Intelligentsia Coffee's full product catalog, search for specific coffees, explore curated collections, and access detailed product information including variants and pricing. You can also filter products by type—such as subscription coffees or goods—to find exactly what you're looking for.
illy.com API
Browse illy's complete catalog of premium coffee products, machines, and gift sets while discovering reviews, availability, pricing, and promotional offers. Search for specific items by category, check subscription options, and get detailed product information and Q&A to find exactly what you're looking for.
coles.com.au API
Search and browse Coles supermarket products by category, view detailed product information, and discover current specials all in one place. Find exactly what you're looking for with powerful search functionality and organized category navigation.
backcountry.com API
backcountry.com API
zabars.com API
Search and browse Zabar's gourmet food products with autocomplete suggestions and detailed item information including pricing and availability. Get paginated results to easily discover specialty foods, wines, and delicacies from their curated selection.
blueapron.com API
Search and browse Blue Apron recipes, menus, and cookbooks to discover meal ideas and get detailed recipe information. Access the complete recipe catalog through sitemaps and detailed recipe listings with ingredients and instructions.
cigarsinternational.com API
Search and browse cigars by brand, category, and daily deals while reading customer reviews to find the perfect smoke. Discover store locations and explore comprehensive product information across Cigars International's entire catalog.
instacart.com API
Search for grocery products across multiple retailers, view store locations and availability, and access detailed product information including prices and descriptions. Find the best deals and nearest stores offering the items you need.