Skip to main content

🧠 Shopify Client SDK

Welcome to the heart of @nextshopkit/sdk and @nextshopkit/pro.
Everything starts with createShopifyClient() β€” a typed, server-safe way to access Shopify’s Storefront API.


πŸ›  What is the client?​

The client is your gateway to Shopify. It wraps all of your requests and gives you access to prebuilt methods like:

  • getProduct() β€” Fetch a single product by handle
  • getCollection() β€” Fetch multiple products with filters, sorting, and pagination within a collection
  • getPolicies() β€” Fetch refund, privacy, terms, and shipping policies (PRO only)

βš™οΈ Initializing the client​

You only need to do this once β€” usually inside:

lib/NextShopKit/client.ts
import {
createShopifyClient,
GetProductOptions,
FetchProductResult,
GetPoliciesOptions,
FetchPoliciesResult,
GetCollectionOptions,
FetchCollectionResult,
} from "@nextshopkit/pro-development";

const client = createShopifyClient({
shop: process.env.SHOPIFY_STORE_DOMAIN!,
token: process.env.SHOPIFY_ACCESS_TOKEN!,
apiVersion: "2025-01",
});

export const getProduct = async (
args: GetProductOptions
): Promise<FetchProductResult> => client.getProduct(args);

export const getCollection = async (
args: GetCollectionOptions
): Promise<FetchCollectionResult> => client.getCollection(args);

export const getPolicies = async (
args?: GetPoliciesOptions
): Promise<FetchPoliciesResult> => client.getPolicies(args);

export default client;

πŸ” Environment Variables​

Your .env.local file must contain:

SHOPIFY_ACCESS_TOKEN=your-access-token
SHOPIFY_STORE_DOMAIN=your-store.myshopify.com

These values are never exposed to the client. Always use the SDK on the server only.


🧩 What does the client return?​

Every SDK method returns the same structure:

const { data, error } = await getProduct({ handle: "solar-kit-9kw" });

if (error || !data) {
// Handle the error gracefully
}

You always get:

  • data: the structured result (or null if not found)
  • error: a parsed error object (or null if success)

πŸ“š Method Overview​

MethodDescriptionTierLink
getProduct()Fetch a product by handleCORESee docs β†’
getCollection()Fetch multiple products with filters & sortingCORESee docs β†’
getPolicies()Fetch shop policies (refund, privacy, etc.)PROSee docs β†’

⚠️ Server-only usage required​

Never use this SDK in client components!

Because it uses secrets from .env, you must use these functions only:

  • Inside server components (App Router)
  • In "use server" utilities
  • In API routes or route handlers

Using it on the client would expose sensitive data.


βœ… Best practices​

  • Place the client setup inside lib/NextShopKit/client.ts
  • Create wrappers like getProduct, getCollection, and getPolicies so you can mock or extend them later
  • Handle error and null data gracefully
  • Group usage per domain (lib/NextShopKit/products.ts, cart.ts, etc.)

πŸ§ͺ Need examples?​


You’re all set! Your Shopify client is now ready to power your headless storefront.

Description

Learn how to initialize the Shopify client using createShopifyClient and access all SDK functions including getProduct, getCollection, and getPolicies.