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

# Shopify App Reviews API

> Paginated, sortable (relevance/newest) reviews for one app.



## OpenAPI

````yaml openapi.json GET /v1/shopify/apps/{handle}/reviews
openapi: 3.0.0
info:
  title: ScoutLayer API
  version: 1.0.0
  description: Competitor data. One API.
servers:
  - url: https://api.scoutlayer.io
    description: Production
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /v1/shopify/apps/{handle}/reviews:
    get:
      tags:
        - shopify
        - app-store
        - reviews
      summary: Get one page of reviews for a Shopify app
      description: Paginated, sortable (relevance/newest) reviews for one app.
      parameters:
        - schema:
            type: string
            minLength: 1
            example: klaviyo
          required: true
          name: handle
          in: path
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
            example: 1
          required: false
          name: page
          in: query
        - schema:
            type: string
            enum:
              - relevance
              - newest
            example: newest
          required: false
          name: sort
          in: query
      responses:
        '200':
          description: Get one page of reviews for a Shopify app
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewPage'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Insufficient credits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '501':
          description: This endpoint is declared but not yet implemented — never charged
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '502':
          description: The orchestrator failed or was unreachable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  schemas:
    ReviewPage:
      type: object
      properties:
        reviews:
          type: array
          items:
            $ref: '#/components/schemas/Review'
        summary:
          type: array
          items:
            type: object
            properties:
              label:
                type: string
              count:
                type: number
            required:
              - label
              - count
        pagination:
          $ref: '#/components/schemas/Pagination'
      required:
        - reviews
        - summary
        - pagination
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: NOT_FOUND
            message:
              type: string
          required:
            - code
            - message
      required:
        - error
    Review:
      type: object
      properties:
        appUrl:
          type: string
        appName:
          type: string
        authorName:
          type: string
        publishedAt:
          type: string
        authorLocation:
          type: string
        rating:
          type: number
        authorLastUsedAt:
          type: string
        text:
          type: string
        reviewId:
          type: string
      required:
        - appUrl
        - appName
        - authorName
        - publishedAt
        - authorLocation
        - rating
        - authorLastUsedAt
        - text
        - reviewId
    Pagination:
      type: object
      properties:
        hasNextPage:
          type: boolean
        totalPages:
          type: integer
        currentPage:
          type: integer
      required:
        - hasNextPage
        - totalPages
        - currentPage
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key passed as the X-API-Key request header. Recommended for
        server-to-server calls.
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key (or OAuth token) passed as a Bearer token in the Authorization
        header.

````