๐งพ getProduct()
Overview
The getProduct()
method allows you to fetch a single product by its handle or ID, along with associated variants, images, pricing, and custom metafields.
It returns a well-structured and typed result with a familiar shape you can use in your frontend โ without writing raw GraphQL.
โ When to use thisโ
- Rendering a product detail page
- Getting variant-specific pricing
- Displaying custom product attributes via metafields
- Fetching product details for static generation or SSR
๐ง Basic Usageโ
- TypeScript
import { getProduct } from "@/lib/NextShopKit/client";
const { data, error } = await getProduct({
handle: "solar-kit-9kw",
customMetafields: [
{ field: "custom.warranty", type: "single_line_text" },
{ field: "custom.weight", type: "decimal" },
],
options: {
resolveFiles: true,
renderRichTextAsHtml: true,
camelizeKeys: true,
},
});
if (error || !data) {
// handle error
}
console.log(data.title, data.price.amount);
๐ฅ Input Sourcesโ
You can fetch a product using:
- โ
handle
(recommended for product pages) - โ
id
(if stored in your database or passed from related queries)
You must provide either handle
or id
. If both are missing, an error will be returned.
๐ฆ Returned Dataโ
You receive a fully typed Product
object containing:
id
,title
,handle
,descriptionHtml
featuredImage
,images[]
variants[]
โ each with:variantTitle
,price
, optionalcompareAtPrice
- optional
metafields
price
,compareAtPrice
โ inferred from the first variantmetafields
โ casted, camelized, and optionally transformed
โก๏ธ See full return structure in Result Types โ
๐งฉ Metafield Supportโ
getProduct()
supports:
customMetafields
: for product-level metafieldsvariantMetafields
: for metafields inside each variant
You can also:
- Transform data using
transformMetafields
- Automatically cast and format files or rich text
โก๏ธ Learn how to define and use metafields in Custom Metafields โ
โ ๏ธ Server-only usageโ
This function uses your private Shopify access token and must be used only on the server.
โ Use in:
- API routes
- App Router server components
- Route handlers
"use server"
utility functions
๐ซ Do not import this into client components โ doing so will leak secrets.
โ Continue: Options Reference โ
Description
Fetch a single product by handle or ID using getProduct from @nextshopkit/sdk or @nextshopkit/pro.