> ## Documentation Index
> Fetch the complete documentation index at: https://developers.qshop.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Product Reviews

> **Host**: http://qshop.ng



## OpenAPI

````yaml get /shops/{shopId}/products/{productId}/reviews
openapi: 3.1.0
info:
  title: OpenAPI Specification
  version: 1.0.0
  description: >-
    QShop storefront API.  This API is used to build a storefront for a QShop
    store
  contact:
    name: QShop
    url: https://qshop.ng
    email: hello@qshop.ng
servers:
  - url: http://staging.qshop.ng/apiv2
    description: Staging server
  - url: http://qshop.ng/api
    description: Production server
security: []
paths:
  /shops/{shopId}/products/{productId}/reviews:
    get:
      tags:
        - Product
        - Review
      summary: Get Product Reviews
      description: '**Host**: http://qshop.ng'
      parameters:
        - name: shopId
          in: path
          required: true
          schema:
            type: string
        - name: productId
          in: path
          required: true
          schema:
            type: string
        - name: page
          in: query
          required: false
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  msg:
                    type: string
                  data:
                    type: object
                    properties:
                      data:
                        type: array
                      next:
                        type: 'null'
                      prev:
                        type: 'null'
                      noOfPages:
                        type: integer
                      currentPage:
                        type: integer
                      totalRecord:
                        type: integer
                    required:
                      - data
                      - next
                      - prev
                      - noOfPages
                      - currentPage
                      - totalRecord
                  success:
                    type: boolean
                required:
                  - msg
                  - data
                  - success
          description: ''

````