Skip to main content
shoppy.products
The Products API provides methods to fetch, filter, search, and paginate through Shopify products.
See Types for full interface definitions.

Methods

Quick Example

// List all products
const { items } = await shoppy.products.list()

// Get single product
const product = await shoppy.products.get('product-handle')

// Products from collection with options
const { items } = await shoppy.products
    .collection('sale')
    .limit(12)
    .select(['title', 'priceRange', 'featuredImage'])
    .list()