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

# Get a report

> Retrieve a single report by GUID or ObjectId.



## OpenAPI

````yaml https://www.thereviewport.com/api/swagger.json get /reports/{id}
openapi: 3.0.3
info:
  title: The Review Port API
  description: >-
    Public API for accessing CLO reports, trend reports, managers, issuers,
    retention holders, and entities.
  version: 1.0.0
  contact:
    email: support@thereviewport.com
servers:
  - url: https://www.thereviewport.com/api
    description: Production server
security:
  - ApiKeyQuery: []
  - ApiKeyHeader: []
tags:
  - name: Reports
    description: CLO report operations
  - name: Trend Reports
    description: Trend report operations
  - name: Managers
    description: Manager operations
  - name: Issuers
    description: Issuer operations
  - name: Holders
    description: Retention holder operations
  - name: Entities
    description: Entity operations (administrators, arrangers, trustees, etc.)
paths:
  /reports/{id}:
    get:
      tags:
        - Reports
      summary: Get a report
      description: Retrieve a single report by GUID or ObjectId.
      operationId: getReport
      parameters:
        - name: id
          in: path
          required: true
          description: Report GUID or ObjectId
          schema:
            type: string
        - name: includeBody
          in: query
          description: Include full body content
          schema:
            type: boolean
            default: false
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportDetail'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  schemas:
    ReportDetail:
      type: object
      properties:
        guid:
          type: string
        title:
          type: string
        summary:
          type: string
          nullable: true
        preview:
          type: object
          nullable: true
        publishedDate:
          type: string
          format: date-time
        region:
          type: string
          nullable: true
        issueType:
          type: string
          nullable: true
        issueVersion:
          type: string
          nullable: true
        isFeatured:
          type: boolean
        images:
          $ref: '#/components/schemas/Images'
        manager:
          type: object
          nullable: true
          properties:
            id:
              type: string
            guid:
              type: string
            name:
              type: string
            logo:
              type: string
              nullable: true
        issuer:
          type: object
          nullable: true
          properties:
            id:
              type: string
            guid:
              type: string
            name:
              type: string
            logo:
              type: string
              nullable: true
        retentionHolder:
          type: object
          nullable: true
        tags:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
        sourceDoc:
          type: object
          nullable: true
        content:
          type: object
          properties:
            highlights:
              type: string
              nullable: true
            keyConsiderations:
              type: string
              nullable: true
            firstLook:
              type: string
              nullable: true
            body:
              type: string
              nullable: true
              description: Only included when includeBody=true
        links:
          $ref: '#/components/schemas/ReportLinks'
    Images:
      type: object
      properties:
        header:
          type: string
          nullable: true
        thumbnail:
          type: string
          nullable: true
    Tag:
      type: object
      properties:
        id:
          type: string
          nullable: true
        label:
          type: string
          nullable: true
        slug:
          type: string
          nullable: true
    ReportLinks:
      type: object
      properties:
        self:
          type: string
        web:
          type: string
        embed:
          type: string
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  responses:
    Unauthorized:
      description: API key missing or invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: >-
              API key required. Provide via query ?apiKey=... or header
              x-api-key.
    Forbidden:
      description: Access to resource not permitted
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Access to reports is not permitted for this API key.
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Report not found
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Rate limit exceeded. Try again later.
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: apiKey
      description: API key passed as query parameter
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: API key passed as header

````