# Sunbeam Brew Co.

[Sunbeam Brew Co.](https://coffee.mock.shop/llms.txt) is a [mock.shop](https://www.mock.shop/) sample store for building against a coffee and brewing-equipment catalog before a real Shopify store is ready. It includes coffee, mugs, brewers, and storage containers. The catalog has 8 products across 2 collections. Each product has six variants, with two options and prices that vary by selection.

mock.shop is an auth-free Shopify Storefront GraphQL API backed by sample reference stores. Find out more about [mock.shop sample stores](https://www.shopify.com/blog/mock-shop).

## When to use this store

Choose Sunbeam Brew Co. when you’re building a coffee and brewing-equipment shop with two-option product selectors and prices that update with each selection.

Use Sunbeam Brew Co. for:

- Coffee and brewing-equipment storefronts
- Product selectors with two choices in one option and three in the other
- Price updates tied to the selected variant

Choose another mock.shop store if you need single-variant products or a large catalog. Browse <https://mock.shop/llms.txt> to find a store that matches your catalog.

## Example Sunbeam Brew Co. query

Here’s an example GraphQL `POST` request that retrieves basic product and pricing information from <https://coffee.mock.shop/api>:

```bash
curl https://coffee.mock.shop/api \
  -H 'Content-Type: application/json' \
  --data '{"query":"{ coffee: product(handle: \"specialty-coffee-blend-packaging\") { title options { name values } variants(first: 6) { nodes { id selectedOptions { name value } price { amount currencyCode } availableForSale } } } brewer: product(handle: \"glass-pour-over-brewer-set-with-minimalist-stand\") { title options { name values } variants(first: 6) { nodes { id selectedOptions { name value } price { amount currencyCode } availableForSale } } } }"}'
```

This query returns the coffee blend’s Grind Type and Roast Profile options, the brewer’s Finish and Capacity options, and all six variants for each product with IDs, selected options, current prices, and availability. Adapt the query for your storefront needs.

The endpoint doesn't require authentication or an access token. Read <https://coffee.mock.shop/llms.txt> for catalog details and store-specific instructions.

## What this catalog lets you test

Build product pages for coffee and brewing equipment, with option selectors, selected prices, and cart items. Use the six combinations per product to check that both selectors resolve to the right variant ID. The queried blend changes price by Grind Type, while the brewer changes price by Finish; read each variant’s price rather than assigning a price rule to an option name. Option names and their order vary across this synthetic catalog, so don’t infer them from the product title.

Preview the catalog in a storefront by opening <https://coffee.hydrogen.mock.shop> in a browser.

![Sunbeam Brew Co.’s glass pour-over brewer with product images, Finish and Capacity options, a price, and an Add to cart button.](images/sunbeam-brew-co-glass-pour-over-brewer-20260910.webp)

## Build with an AI coding tool

To build a coffee storefront with Sunbeam Brew Co. using Claude, ChatGPT, Cursor, Lovable, or another AI assistant, copy the prompt below. It gives the assistant the store domain and directs it to the catalog instructions before it starts writing code.

```text
Build me a Hydrogen storefront using coffee.mock.shop as the store domain. Setup instructions: coffee.mock.shop/llms.txt
```

Shopify also provides a [mock.shop starter project](https://github.com/Shopify/mock-shop-starter): a Hydrogen storefront with product pages, collection browsing, and a working cart already connected to mock.shop. You or your AI coding tool can customize this code instead of building those pieces from scratch.

Follow the repository’s setup instructions, then set `PUBLIC_STORE_DOMAIN=coffee.mock.shop` in `.env` and restart the dev server to use Sunbeam Brew Co.’s catalog. Leave `PUBLIC_STOREFRONT_API_TOKEN` empty; mock.shop doesn’t require a token.

## Move to a real Shopify store

mock.shop uses fictional, read-only catalog data. Cart operations work, and checkout is mocked: no payment is taken and no real order is placed. The Customer Account API isn’t supported.

When you’re ready to launch, point your storefront at a Shopify store and add that store’s public Storefront API token. If you don’t have a Shopify store yet, [start a Shopify free trial](https://www.shopify.com/free-trial) to create one.

Read the [mock.shop developer documentation](https://shopify.dev/docs/storefronts/headless/mock-shop) for setup and migration details.

## Store facts

| | |
|---|---|
| Store handle | `coffee` |
| Catalog model | Coffee and brewing equipment with two-option variants |
| Products | 8 |
| Collections | 2 |
| Categories | 5 |
| Variants per product | 6 |
| Compare-at prices | 1 product |
| Requires shipping | All products |
| API endpoint | <https://coffee.mock.shop/api> |
| Store instructions | <https://coffee.mock.shop/llms.txt> |
| Browser preview | <https://coffee.hydrogen.mock.shop> |
