# SteadyWorks Supply Co.

[SteadyWorks Supply Co.](https://industrial.mock.shop/llms.txt) is a [mock.shop](https://www.mock.shop/) sample store for building against an industrial supply store before a real Shopify store is ready. The catalog includes shipping and moving boxes, packing tape and bubble wrap, dollies and hand trucks, pallet jacks, industrial shelving, safety glasses and gloves, and brooms. There are 60 products across five collections. Each product has one option selector; its label and choices depend on the item.

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 SteadyWorks Supply Co. when you want to build an industrial supply shop with shipping materials, handling equipment, and practical product choices.

Use SteadyWorks Supply Co. for:

- B2B industrial store with shipping boxes, hand trucks, pallet jacks, safety glasses, shelving, and facility maintenance supplies across 16 categories
- Industrial Packaging Box product pages with `Size` choices
- Browsing shipping supplies, material-handling equipment, and workplace safety collections

Choose another mock.shop store if you need a hardware shop centered on hand tools and fasteners or multi-option products with variable prices. Browse <https://mock.shop/llms.txt> to find a store that matches your catalog.

## Example SteadyWorks Supply Co. query

Here’s an example GraphQL `POST` request that retrieves options and variant prices for one product from <https://industrial.mock.shop/api>:

```bash
curl https://industrial.mock.shop/api \
  -H 'Content-Type: application/json' \
  --data '{"query":"{ product(handle: \"industrial-packaging-box\") { id title options { name values } variants(first: 50) { pageInfo { hasNextPage } nodes { id title selectedOptions { name value } price { amount currencyCode } compareAtPrice { amount currencyCode } availableForSale } } } }"}'
```

This query retrieves Industrial Packaging Box, including option values, variant IDs, selected options, availability, and current and compare-at prices. Use the selected variant’s ID and price when adding it to a cart.

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

## What this catalog lets you test

Build an industrial supply shop where customers find packing materials, handling equipment, and workplace essentials in focused collections. SteadyWorks Supply Co. offers 60 products with browsing paths such as Heavy Duty Material Transport and Site Safety Essentials. The Industrial Packaging Box has Small, Medium, and Large choices at the same price, giving you a simple variant-selection and cart example. Other items use their own specification labels. Display those as sample catalog data rather than verified load ratings, safety certifications, or compatibility guarantees.

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

![Industrial Packaging Box product page on SteadyWorks Supply Co., showing corrugated box with metal corner reinforcements on studio and brick backgrounds, size selector](images/steadyworks-supply-co-industrial-packaging-box-20260911.webp)

## Build with an AI coding tool

To build an industrial supply storefront with SteadyWorks Supply 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 industrial.mock.shop as the store domain. Setup instructions: industrial.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=industrial.mock.shop` in `.env` and restart the dev server to use SteadyWorks Supply 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 | `industrial` |
| Catalog model | Industrial supply store |
| Products | 60 |
| Collections | 5 |
| Categories | 16 |
| Variants per product | 2–3 |
| Compare-at prices | 14 products |
| Requires shipping | All products |
| API endpoint | <https://industrial.mock.shop/api> |
| Store instructions | <https://industrial.mock.shop/llms.txt> |
| Browser preview | <https://industrial.hydrogen.mock.shop> |
