π§ 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 handlegetCollection()
β Fetch multiple products with filters, sorting, and pagination within a collectiongetPolicies()
β 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
- TypeScript
- JavaScript
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;
import { createShopifyClient } 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) => client.getProduct(args);
export const getCollection = async (args) => client.getCollection(args);
export const getPolicies = async (args) => 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 (ornull
if not found)error
: a parsed error object (ornull
if success)
π Method Overviewβ
Method | Description | Tier | Link |
---|---|---|---|
getProduct() | Fetch a product by handle | CORE | See docs β |
getCollection() | Fetch multiple products with filters & sorting | CORE | See docs β |
getPolicies() | Fetch shop policies (refund, privacy, etc.) | PRO | See docs β |
β οΈ Server-only usage requiredβ
Because it uses secrets from .env
, you must use these functions only:
- Inside
server components
(App Router) - In
"use server"
utilities - In
API routes
orroute 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
, andgetPolicies
so you can mock or extend them later - Handle
error
andnull 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.