# CanvasBloom Studio

[CanvasBloom Studio](https://printables-digital.mock.shop/llms.txt) is a [mock.shop](https://www.mock.shop/) sample store for building against a collection-rich digital-download catalog before a real Shopify store is ready. It includes botanical prints, abstract art, seasonal decor, and children's artwork. The catalog has 30 products across 4 collections. Every product has one default variant, no product requires shipping, and 9 products have a compare-at price.

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 CanvasBloom Studio when a storefront sells downloadable artwork through several editorial collections.

Use CanvasBloom Studio for:

- Printable-art and digital-download storefronts
- Collection pages for botanical, abstract, seasonal, and children's artwork
- Product pages and carts that skip shipping for downloadable goods

Choose another mock.shop store if you need physical shipping, size or color selectors, subscriptions, appointments, or a large catalog. Browse <https://mock.shop/llms.txt> to find a store that matches your catalog.

## Example CanvasBloom Studio query

Here’s an example GraphQL `POST` request that retrieves digital product pricing and shipping requirements from <https://printables-digital.mock.shop/api>:

```bash
curl https://printables-digital.mock.shop/api \
  -H 'Content-Type: application/json' \
  --data '{"query":"{ collections(first: 4) { nodes { title handle products(first: 3) { nodes { title variants(first: 1) { nodes { price { amount currencyCode } compareAtPrice { amount currencyCode } requiresShipping } } } } } } }"}'
```

This query returns collection titles and handles, product titles, current prices, compare-at prices, and shipping requirements. Adapt the query for your storefront needs.

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

## What this catalog lets you test

CanvasBloom Studio has four collections of downloadable artwork, allowing an agent to test collection navigation alongside no-shipping product and cart behavior. Because every product has one default variant and `requiresShipping` is false, it supports product pages without option selectors and compare-at price display across a 30-product catalog.

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

![CanvasBloom Studio's Botanical Serenity collection with botanical printable-art listings labeled Digital Download and regular and sale prices.](images/canvasbloom-studio-collection-20260910.webp)

## Build with an AI coding tool

To build a printable-art storefront with CanvasBloom Studio 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 printables-digital.mock.shop as the store domain. Setup instructions: printables-digital.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=printables-digital.mock.shop` in `.env` and restart the dev server to use CanvasBloom Studio’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 | `printables-digital` |
| Catalog model | Collection-rich digital-download catalog |
| Products | 30 |
| Collections | 4 |
| Categories | 1 |
| Variants per product | 1 |
| Compare-at prices | 9 products |
| Requires shipping | No products |
| API endpoint | <https://printables-digital.mock.shop/api> |
| Store instructions | <https://printables-digital.mock.shop/llms.txt> |
| Browser preview | <https://printables-digital.hydrogen.mock.shop> |
