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

# Get a report

> Gets one AI Coach report after verifying the report belongs to the workspace.



## OpenAPI

````yaml /public-v1.json get /workspaces/{workspaceId}/reports/{reportId}
openapi: 3.0.3
info:
  title: Triple Session Public API
  version: 1.0.0
  license:
    name: Proprietary
    url: https://triplesession.com/terms-of-service
  description: >
    Public API v1 exposes AI Coach report data from the legacy Pages API.

    Workspace report endpoints authenticate with a workspace public API key sent
    as a bearer token.
servers:
  - url: https://app.triplesession.com/api/public/ai-coach
    description: Production
security: []
tags:
  - name: Reports
    description: AI Coach report data and artifacts.
paths:
  /workspaces/{workspaceId}/reports/{reportId}:
    get:
      tags:
        - Reports
      summary: Get a report
      description: >-
        Gets one AI Coach report after verifying the report belongs to the
        workspace.
      operationId: getReport
      parameters:
        - $ref: '#/components/parameters/WorkspaceId'
        - $ref: '#/components/parameters/ReportId'
      responses:
        '200':
          description: Report details.
          headers:
            Cache-Control:
              $ref: '#/components/headers/CacheControl'
            X-RateLimit-Limit:
              $ref: '#/components/headers/XRateLimitLimit'
            X-RateLimit-Remaining:
              $ref: '#/components/headers/XRateLimitRemaining'
            X-RateLimit-Reset:
              $ref: '#/components/headers/XRateLimitReset'
            X-RateLimit-Active-Window:
              $ref: '#/components/headers/XRateLimitActiveWindow'
            X-RateLimit-Minute-Limit:
              $ref: '#/components/headers/XRateLimitMinuteLimit'
            X-RateLimit-Minute-Remaining:
              $ref: '#/components/headers/XRateLimitMinuteRemaining'
            X-RateLimit-Minute-Reset:
              $ref: '#/components/headers/XRateLimitMinuteReset'
            X-RateLimit-Hour-Limit:
              $ref: '#/components/headers/XRateLimitHourLimit'
            X-RateLimit-Hour-Remaining:
              $ref: '#/components/headers/XRateLimitHourRemaining'
            X-RateLimit-Hour-Reset:
              $ref: '#/components/headers/XRateLimitHourReset'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/ReportNotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalServerError'
      security:
        - workspaceApiKey: []
components:
  parameters:
    WorkspaceId:
      name: workspaceId
      in: path
      required: true
      description: Workspace ID.
      schema:
        type: string
        format: uuid
    ReportId:
      name: reportId
      in: path
      required: true
      description: Report ID.
      schema:
        type: string
        format: uuid
  headers:
    CacheControl:
      description: Cache policy applied by the legacy report detail endpoints.
      schema:
        type: string
    XRateLimitLimit:
      description: Limit for the active rate limit window.
      schema:
        type: integer
    XRateLimitRemaining:
      description: Requests remaining in the active rate limit window.
      schema:
        type: integer
    XRateLimitReset:
      description: Unix timestamp when the active rate limit window resets.
      schema:
        type: integer
    XRateLimitActiveWindow:
      description: Active rate limit window.
      schema:
        type: string
        enum:
          - minute
          - hour
    XRateLimitMinuteLimit:
      description: Limit for the minute rate limit window.
      schema:
        type: integer
    XRateLimitMinuteRemaining:
      description: Requests remaining in the minute rate limit window.
      schema:
        type: integer
    XRateLimitMinuteReset:
      description: Unix timestamp when the minute rate limit window resets.
      schema:
        type: integer
    XRateLimitHourLimit:
      description: Limit for the hour rate limit window.
      schema:
        type: integer
    XRateLimitHourRemaining:
      description: Requests remaining in the hour rate limit window.
      schema:
        type: integer
    XRateLimitHourReset:
      description: Unix timestamp when the hour rate limit window resets.
      schema:
        type: integer
    RetryAfter:
      description: Seconds until the request may be retried.
      schema:
        type: integer
  schemas:
    ReportResponse:
      type: object
      required:
        - report
      properties:
        report:
          $ref: '#/components/schemas/Report'
      additionalProperties: false
    Report:
      type: object
      required:
        - id
        - name
        - owner_id
        - score
        - score_breakdown
        - scorecard
        - scorecard_id
        - created_at
        - duration_in_minutes
        - source
        - status
        - evaluatee_user
      properties:
        id:
          type: string
        name:
          type: string
        owner_id:
          type: string
        score:
          type: number
        score_breakdown:
          type: object
          additionalProperties:
            type: number
        scorecard:
          type: string
        scorecard_id:
          type: string
          nullable: true
        created_at:
          type: string
          format: date-time
        duration_in_minutes:
          type: number
          nullable: true
        source:
          type: string
          nullable: true
        status:
          type: string
        evaluatee_user:
          $ref: '#/components/schemas/ReportEvaluateeUser'
        share:
          $ref: '#/components/schemas/ReportShare'
        participants:
          type: array
          items:
            type: string
        attendees:
          type: array
          items:
            type: string
        crm_deals:
          type: array
          items:
            $ref: '#/components/schemas/ReportCrmDeal'
      additionalProperties: false
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
      additionalProperties: false
    ReportEvaluateeUser:
      type: object
      required:
        - name
        - first_name
        - email
      properties:
        id:
          type: string
        name:
          type: string
        first_name:
          type: string
        email:
          type: string
          format: email
        avatar_url:
          type: string
          nullable: true
      additionalProperties: false
    ReportShare:
      type: object
      required:
        - id
      properties:
        id:
          type: string
        deactivated_at:
          type: string
          format: date-time
          nullable: true
      additionalProperties: false
    ReportCrmDeal:
      type: object
      required:
        - id
        - name
        - url
      properties:
        id:
          type: string
        name:
          type: string
        url:
          type: string
          nullable: true
      additionalProperties: false
  responses:
    Unauthorized:
      description: Missing or invalid bearer authentication.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Forbidden:
      description: Missing, deprecated, or unauthorized API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    ReportNotFound:
      description: Requested report was not found or is outside the workspace.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimited:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          $ref: '#/components/headers/RetryAfter'
        X-RateLimit-Limit:
          $ref: '#/components/headers/XRateLimitLimit'
        X-RateLimit-Remaining:
          $ref: '#/components/headers/XRateLimitRemaining'
        X-RateLimit-Reset:
          $ref: '#/components/headers/XRateLimitReset'
        X-RateLimit-Active-Window:
          $ref: '#/components/headers/XRateLimitActiveWindow'
        X-RateLimit-Minute-Limit:
          $ref: '#/components/headers/XRateLimitMinuteLimit'
        X-RateLimit-Minute-Remaining:
          $ref: '#/components/headers/XRateLimitMinuteRemaining'
        X-RateLimit-Minute-Reset:
          $ref: '#/components/headers/XRateLimitMinuteReset'
        X-RateLimit-Hour-Limit:
          $ref: '#/components/headers/XRateLimitHourLimit'
        X-RateLimit-Hour-Remaining:
          $ref: '#/components/headers/XRateLimitHourRemaining'
        X-RateLimit-Hour-Reset:
          $ref: '#/components/headers/XRateLimitHourReset'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalServerError:
      description: Unexpected server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    workspaceApiKey:
      type: http
      scheme: bearer
      bearerFormat: Workspace API key
      description: Use the public API key generated for a workspace.

````