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

# Get a report run

> Get a single report run with full section details and narrative analysis



## OpenAPI

````yaml get /api/v2/report-run/get
openapi: 3.0.0
info:
  version: 1.0.0
  title: Octave API
  description: API for Octave workspace management and AI-powered content generation
servers:
  - url: https://app.octavehq.com
security:
  - ApiKeyAuth: []
paths:
  /api/v2/report-run/get:
    get:
      tags:
        - ReportRun
      summary: Get a report run
      description: Get a single report run with full section details and narrative analysis
      operationId: getReportRun
      parameters:
        - schema:
            type: string
            description: Report run oId (rr_ prefix)
            example: rr_abc123
          required: true
          name: oId
          in: query
      responses:
        '200':
          description: Report run detail
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    $ref: '#/components/schemas/ReportRunDetail'
                required:
                  - _metadata
                  - data
      deprecated: false
components:
  schemas:
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          description: API usage
          example: 0
        requestId:
          type: string
          description: Request ID
          example: requestId
        message:
          type: string
          description: Message
          example: message
        timestamp:
          type: string
          description: Timestamp
          example: '2021-01-01T00:00:00.000Z'
      required:
        - requestId
        - timestamp
    ReportRunDetail:
      type: object
      properties:
        oId:
          type: string
          description: Report run oId
        status:
          type: string
          enum:
            - started
            - succeeded
            - failed
            - skipped
            - analyzing
          description: Run status
        title:
          type: string
          nullable: true
          description: AI-generated report title
        summary:
          type: string
          nullable: true
          description: AI-generated summary
        windowStart:
          type: string
          nullable: true
          description: Report window start
        windowEnd:
          type: string
          nullable: true
          description: Report window end
        sections:
          type: array
          items:
            $ref: '#/components/schemas/ReportSection'
          description: Report sections
        comparisonWithPrevious:
          type: object
          nullable: true
          additionalProperties:
            nullable: true
          description: Comparison with previous report run
      required:
        - oId
        - status
        - title
        - summary
        - sections
        - comparisonWithPrevious
    ReportSection:
      type: object
      properties:
        oId:
          type: string
          description: Section oId
        topic:
          type: string
          nullable: true
          description: Section topic/theme
        details:
          type: string
          description: Narrative analysis for this section
        sectionOrder:
          type: number
          description: Position within the report (0-indexed)
        evidenceCount:
          type: number
          description: Number of supporting findings
      required:
        - oId
        - topic
        - details
        - sectionOrder
        - evidenceCount
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````