Fetch a specific Product by one of its unique attributes.


The handle of the Product.

The ID of the Product.


Was this section helpful?

Anchor to Product
Product
Access requirements

A product represents an individual item for sale in a Shopify store. Products are often physical, but they don't have to be. For example, a digital download (such as a movie, music or ebook file) also qualifies as a product, as do services (such as equipment rental, work for hire, customization of another product or an extended warranty).


Was this section helpful?

Examples

Hide code
DescriptionCopy
query getProductById($id: ID!) {
  product(id: $id) {
    title
  }
}
Hide code
Response
JSON
{
  "product": {
    "title": "Camper Van"
  }
}