> ## 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.

# App Store Reviews API

> Recent reviews for one app, including developer replies.



## OpenAPI

````yaml openapi.json GET /v1/apple/apps/{appId}/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/apple/apps/{appId}/reviews:
    get:
      tags:
        - apple
        - app-store
        - reviews
      summary: Get one page of reviews for an App Store app
      description: Recent reviews for one app, including developer replies.
      parameters:
        - schema:
            type: string
            minLength: 1
            example: '310633997'
          required: true
          name: appId
          in: path
        - schema:
            type: string
            example: US
          required: false
          name: country
          in: query
        - schema:
            type: string
          required: false
          name: cursor
          in: query
      responses:
        '200':
          description: Get one page of reviews for an App Store app
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppStoreReviewList'
        '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:
    AppStoreReviewList:
      type: object
      properties:
        reviews:
          type: array
          items:
            $ref: '#/components/schemas/AppStoreReview'
        nextCursor:
          type: string
          nullable: true
        hasMore:
          type: boolean
      required:
        - reviews
        - nextCursor
        - hasMore
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: NOT_FOUND
            message:
              type: string
          required:
            - code
            - message
      required:
        - error
    AppStoreReview:
      type: object
      properties:
        reviewId:
          type: string
        appId:
          type: string
        rating:
          type: number
        title:
          type: string
          nullable: true
        text:
          type: string
        publishedAt:
          type: string
        helpfulCount:
          type: integer
          nullable: true
        authorName:
          type: string
        appVersion:
          type: string
          nullable: true
        developerReply:
          type: object
          nullable: true
          properties:
            text:
              type: string
            repliedAt:
              type: string
              nullable: true
          required:
            - text
            - repliedAt
          description: How the developer responded to this review, if at all
      required:
        - reviewId
        - appId
        - rating
        - title
        - text
        - publishedAt
        - helpfulCount
        - authorName
        - appVersion
        - developerReply
  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.

````