---
title: useProductReviews
description: The useProductReviews hook fetches reviews for a specific product.
source_url:
  html: 'https://shopify.dev/docs/api/shop-minis/hooks/product/useproductreviews'
  md: 'https://shopify.dev/docs/api/shop-minis/hooks/product/useproductreviews.md'
api_name: shop-minis
---

# use​Product​Reviews

The `useProductReviews` hook fetches reviews for a specific product.

Examples

### Examples

* ####

  ##### tsx

  ```tsx
  import {useProductReviews, Button} from '@shopify/shop-minis-react'

  export default function MyComponent() {
    const {reviews, loading, error, hasNextPage, fetchMore} = useProductReviews({
      id: 'gid://shopify/Product/123',
      first: 10,
    })

    console.log({reviews, loading, error})

    return (
      <>
        {/* Render reviews here */}
        {hasNextPage && (
          <Button onClick={fetchMore} disabled={loading}>
            Load More Reviews
          </Button>
        )}
      </>
    )
  }
  ```

***
