Skip to main content

๐Ÿงพ 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โ€‹

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, optional compareAtPrice
    • optional metafields
  • price, compareAtPrice โ€” inferred from the first variant
  • metafields โ€” casted, camelized, and optionally transformed

โžก๏ธ See full return structure in Result Types โ†’


๐Ÿงฉ Metafield Supportโ€‹

getProduct() supports:

  • customMetafields: for product-level metafields
  • variantMetafields: 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โ€‹

caution

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.