--- title: productRecommendations - Storefront API description: | Find recommended products related to a given `product_id`. To learn more about how recommendations are generated, see [*Showing product recommendations on product pages*](https://help.shopify.com/themes/development/recommended-products). api_version: 2025-10 api_name: storefront type: query api_type: graphql source_url: html: https://shopify.dev/docs/api/storefront/latest/queries/productRecommendations md: https://shopify.dev/docs/api/storefront/latest/queries/productRecommendations.md --- # product​Recommendations query Find recommended products related to a given `product_id`. To learn more about how recommendations are generated, see [*Showing product recommendations on product pages*](https://help.shopify.com/themes/development/recommended-products). ## Arguments * intent [Product​Recommendation​Intent](https://shopify.dev/docs/api/storefront/latest/enums/ProductRecommendationIntent) Default:RELATED The recommendation intent that is used to generate product recommendations. You can use intent to generate product recommendations on various pages across the channels, according to different strategies. * product​Handle [String](https://shopify.dev/docs/api/storefront/latest/scalars/String) The handle of the product. * product​Id [ID](https://shopify.dev/docs/api/storefront/latest/scalars/ID) The id of the product. *** ## Possible returns * Product [\[Product!\]](https://shopify.dev/docs/api/storefront/latest/objects/Product) The `Product` object lets you manage products in a merchant’s store. Products are the goods and services that merchants offer to customers. They can include various details such as title, description, price, images, and options such as size or color. You can use [product variants](https://shopify.dev/docs/api/storefront/latest/objects/ProductVariant) to create or update different versions of the same product. You can also add or update product [media](https://shopify.dev/docs/api/storefront/latest/interfaces/Media). Products can be organized by grouping them into a [collection](https://shopify.dev/docs/api/storefront/latest/objects/Collection). Learn more about working with [products and collections](https://shopify.dev/docs/storefronts/headless/building-with-the-storefront-api/products-collections). *** ## Examples * ### productRecommendations reference ## Query Reference ```graphql { productRecommendations { # productRecommendations fields } } ```