> ## 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 Review Lookup API

> One review, looked up directly by review ID rather than by app + page.



## OpenAPI

````yaml https://api.scoutlayer.io/openapi.json get /v1/shopify/apps/reviews/{reviewId}
openapi: 3.0.0
info:
  title: ScoutLayer API
  version: 1.0.0
  description: Structured data from the web. No browser required.
servers:
  - url: https://api.scoutlayer.com
    description: Production
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /v1/shopify/apps/reviews/{reviewId}:
    get:
      tags:
        - shopify
        - app-store
        - reviews
      summary: Get a single Shopify app review by its ID
      description: One review, looked up directly by review ID rather than by app + page.
      parameters:
        - schema:
            type: string
            minLength: 1
            example: '12345678'
          required: true
          name: reviewId
          in: path
      responses:
        '200':
          description: Get a single Shopify app review by its ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Review'
        '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'
        '502':
          description: The orchestrator failed or was unreachable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  schemas:
    Review:
      type: object
      properties:
        appUrl:
          type: string
        appName:
          type: string
        reviewer:
          type: string
        reviewCreatedDate:
          type: string
        reviewerLocation:
          type: string
        rating:
          type: number
        reviewerLatestUsedDate:
          type: string
        reviewContent:
          type: string
        reviewId:
          type: string
      required:
        - appUrl
        - appName
        - reviewer
        - reviewCreatedDate
        - reviewerLocation
        - rating
        - reviewerLatestUsedDate
        - reviewContent
        - reviewId
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: NOT_FOUND
            message:
              type: string
          required:
            - code
            - message
      required:
        - error
  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.

````