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

> Gets a paginated and capped transcript for a call. Requires `calls.read`.



## OpenAPI

````yaml /public-v2.json get /calls/{callId}/transcript
openapi: 3.0.3
info:
  title: Triple Session Public API
  version: 2.0.0
  license:
    name: Proprietary
    url: https://triplesession.com/terms-of-service
  description: |
    Public API v2 exposes Triple Session data through stable REST endpoints.
    Requests are authenticated with a public API key sent as a bearer token.
    The API key determines the maximum accessible resource scope.
servers:
  - url: https://api.triplesession.com/v2
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Calls
    description: Call report data and artifacts.
  - name: Scorecards
    description: Scorecard rubric data.
paths:
  /calls/{callId}/transcript:
    get:
      tags:
        - Calls
      summary: Get a call transcript
      description: >-
        Gets a paginated and capped transcript for a call. Requires
        `calls.read`.
      operationId: getCallTranscript
      parameters:
        - $ref: '#/components/parameters/CallId'
        - $ref: '#/components/parameters/Page'
        - $ref: '#/components/parameters/TranscriptLimit'
        - $ref: '#/components/parameters/MaxChars'
        - $ref: '#/components/parameters/RawTranscript'
      responses:
        '200':
          description: Call transcript page.
          headers:
            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'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    CallId:
      name: callId
      in: path
      required: true
      description: Call ID.
      schema:
        type: string
        format: uuid
    Page:
      name: page
      in: query
      required: false
      description: Page number.
      schema:
        type: integer
        minimum: 1
        default: 1
    TranscriptLimit:
      name: limit
      in: query
      required: false
      description: Number of transcript segments to return.
      schema:
        type: integer
        minimum: 1
        maximum: 200
        default: 100
    MaxChars:
      name: max_chars
      in: query
      required: false
      description: Maximum transcript characters returned in one response.
      schema:
        type: integer
        minimum: 1
        maximum: 50000
        default: 20000
    RawTranscript:
      name: raw
      in: query
      required: false
      description: >-
        Whether to request the raw transcript. Any value except `false` is
        treated as true by the API.
      schema:
        type: boolean
        default: true
  headers:
    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
    RetryAfter:
      description: Seconds until the request may be retried.
      schema:
        type: integer
  schemas:
    TranscriptResponse:
      type: object
      required:
        - transcript
        - pagination
        - truncated
      properties:
        transcript:
          $ref: '#/components/schemas/Transcript'
        pagination:
          $ref: '#/components/schemas/TranscriptPagination'
        truncated:
          type: boolean
      additionalProperties: false
    Transcript:
      type: object
      required:
        - text
        - is_format_supported
        - segments
      properties:
        text:
          type: string
        is_format_supported:
          type: boolean
        segments:
          type: array
          items:
            $ref: '#/components/schemas/TranscriptSegment'
      additionalProperties: false
    TranscriptPagination:
      allOf:
        - $ref: '#/components/schemas/Pagination'
        - type: object
          required:
            - has_more
          properties:
            has_more:
              type: boolean
          additionalProperties: false
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
          properties:
            message:
              type: string
      additionalProperties: false
    TranscriptSegment:
      type: object
      required:
        - index
        - text
      properties:
        index:
          type: integer
          minimum: 0
        text:
          type: string
      additionalProperties: false
    Pagination:
      type: object
      required:
        - page
        - page_size
        - total_count
        - total_pages
      properties:
        page:
          type: integer
          minimum: 1
        page_size:
          type: integer
          minimum: 1
        total_count:
          type: integer
          minimum: 0
        total_pages:
          type: integer
          minimum: 0
      additionalProperties: false
  responses:
    BadRequest:
      description: Invalid path or query parameters.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Missing or invalid bearer authentication.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Forbidden:
      description: >-
        Missing scope, expired key, unsupported key scope, or resource outside
        the API key scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Requested call or scorecard was not found.
      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'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalServerError:
      description: Unexpected server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: Use a public API key with the endpoint's required scope.

````