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

> Gets the transcript text for one AI Coach report.



## OpenAPI

````yaml /public-v1.json get /workspaces/{workspaceId}/reports/{reportId}/transcript
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}/transcript:
    get:
      tags:
        - Reports
      summary: Get a report transcript
      description: Gets the transcript text for one AI Coach report.
      operationId: getReportTranscript
      parameters:
        - $ref: '#/components/parameters/WorkspaceId'
        - $ref: '#/components/parameters/ReportId'
      responses:
        '200':
          description: Report transcript.
          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/TranscriptResponse'
        '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:
    TranscriptResponse:
      type: object
      required:
        - transcript
        - isFormatSupported
      properties:
        transcript:
          type: string
        isFormatSupported:
          type: boolean
      additionalProperties: false
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
      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.

````