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

# Get one reviewed pull request with its review runs

> The single-PR read of listPRReviews: the same group shape plus the captured reviews posted to the PR (newest first), addressed by the pull_request_id every listed group carries. Reviews posted before capture shipped have no content row and are honestly absent. 404 covers both a pull request that does not exist and one the user has no review runs against — the two are deliberately indistinguishable.



## OpenAPI

````yaml api-reference/openapi.account.json GET /pr-reviews/{pullRequestID}
openapi: 3.1.0
info:
  title: Aether Account & Integrations API
  version: 0.1.0
  description: >-
    Account, billing, and integration-management endpoints used by the Aether
    web app and CLI. Root-mounted; NOT part of the versioned /v1 contract.
servers:
  - url: https://api.runaether.dev
security:
  - bearerAuth: []
paths:
  /pr-reviews/{pullRequestID}:
    get:
      tags:
        - pr-reviews
      summary: Get one reviewed pull request with its review runs
      description: >-
        The single-PR read of listPRReviews: the same group shape plus the
        captured reviews posted to the PR (newest first), addressed by the
        pull_request_id every listed group carries. Reviews posted before
        capture shipped have no content row and are honestly absent. 404 covers
        both a pull request that does not exist and one the user has no review
        runs against — the two are deliberately indistinguishable.
      operationId: getPRReview
      parameters:
        - in: path
          name: pullRequestID
          required: true
          schema:
            format: uuid
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: false
                properties:
                  group:
                    $ref: '#/components/schemas/PRReviewGroup'
                  posted_reviews:
                    items:
                      $ref: '#/components/schemas/PRReviewPostedReview'
                    type: array
                required:
                  - group
                  - posted_reviews
                type: object
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not Found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unprocessable Entity
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Server Error
components:
  schemas:
    PRReviewGroup:
      additionalProperties: false
      properties:
        additions:
          format: int64
          minimum: 0
          type: integer
        base_branch:
          type: string
        checks_failed:
          format: int64
          minimum: 0
          type: integer
        checks_passed:
          format: int64
          minimum: 0
          type: integer
        checks_total:
          format: int64
          minimum: 0
          type: integer
        ci_status:
          $ref: '#/components/schemas/TaskCIStatus'
        deletions:
          format: int64
          minimum: 0
          type: integer
        head_branch:
          type: string
        head_sha:
          type: string
        html_url:
          type: string
        latest_created_at:
          format: date-time
          type: string
        needs_attention:
          type: boolean
        pr_number:
          format: int64
          minimum: 1
          type: integer
        pr_state:
          $ref: '#/components/schemas/TaskGitHubPRState'
        pull_request_id:
          format: uuid
          type: string
        repo_name:
          type: string
        repo_owner:
          type: string
        reviews:
          items:
            $ref: '#/components/schemas/PRReviewRun'
          type: array
        title:
          type: string
      required:
        - pull_request_id
        - pr_number
        - title
        - html_url
        - repo_owner
        - repo_name
        - checks_passed
        - checks_failed
        - checks_total
        - additions
        - deletions
        - latest_created_at
        - needs_attention
        - reviews
      type: object
    PRReviewPostedReview:
      additionalProperties: false
      properties:
        body:
          type: string
        comments:
          items:
            $ref: '#/components/schemas/PRReviewPostedReviewComment'
          type: array
        github_review_id:
          format: int64
          maximum: 9007199254740991
          minimum: 1
          type: integer
        html_url:
          type: string
        posted_at:
          format: date-time
          type: string
        review_event:
          $ref: '#/components/schemas/PRReviewPostedReviewEvent'
        task_id:
          format: uuid
          type: string
      required:
        - github_review_id
        - task_id
        - html_url
        - body
        - review_event
        - posted_at
      type: object
    ErrorResponse:
      additionalProperties: false
      properties:
        code:
          type: string
        error:
          minLength: 1
          type: string
      required:
        - error
      type: object
    TaskCIStatus:
      enum:
        - pending
        - passed
        - failed
      type: string
    TaskGitHubPRState:
      enum:
        - open
        - closed
        - merged
      type: string
    PRReviewRun:
      additionalProperties: false
      properties:
        created_at:
          format: date-time
          type: string
        duration_seconds:
          format: int64
          minimum: 0
          type: integer
        error:
          type: string
        head_sha:
          type: string
        id:
          format: uuid
          type: string
        status:
          $ref: '#/components/schemas/ReviewRunStatus'
        trigger:
          $ref: '#/components/schemas/TaskReviewTrigger'
      required:
        - id
        - status
        - created_at
      type: object
    PRReviewPostedReviewComment:
      additionalProperties: false
      properties:
        body:
          type: string
        github_comment_id:
          format: int64
          maximum: 9007199254740991
          minimum: 1
          type: integer
        html_url:
          type: string
        line:
          format: int64
          minimum: 1
          type: integer
        path:
          type: string
        side:
          $ref: '#/components/schemas/PRReviewCommentSide'
      required:
        - github_comment_id
        - path
        - body
        - html_url
      type: object
    PRReviewPostedReviewEvent:
      enum:
        - COMMENT
        - APPROVE
        - REQUEST_CHANGES
      type: string
    ReviewRunStatus:
      enum:
        - reviewing
        - awaiting_input
        - completed
        - failed
        - cancelled
        - superseded
        - archived
      type: string
    TaskReviewTrigger:
      enum:
        - automatic
        - comment_command
      type: string
    PRReviewCommentSide:
      enum:
        - LEFT
        - RIGHT
      type: string
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````