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

# List meeting session transcript

> Returns transcript segments ordered by ascending `seq`. Default `limit` is 100 and maximum is 1,000. Continue with `after=meta.next_after`. A long-poll timeout returns 200 with empty `data` and `meta.next_after: null`; retain the cursor supplied to that request because null is not a replacement cursor.



## OpenAPI

````yaml /openapi/source/external/meeting-sessions/meeting-sessions.json get /meeting_sessions/{id}/transcript
openapi: 3.1.0
info:
  title: Telnyx Meeting Sessions API
  version: 2.0.0
  description: >-
    Programmatically create, control, and inspect Telnyx Meeting Sessions,
    including real-time actions, events, transcripts, recordings, and artifacts.
  x-latency-category: interactive
  x-endpoint-cost: light
servers:
  - url: https://api.telnyx.com/v2
security:
  - bearerAuth: []
tags:
  - name: Meeting Sessions
    description: Create, list, retrieve, update, and stop meeting sessions.
  - name: Meeting Session Actions
    description: Send real-time speech and chat actions to an active meeting session.
  - name: Meeting Session Data
    description: >-
      Read lifecycle events, transcript segments, and recordings for a meeting
      session.
  - name: Meeting Session Artifacts
    description: Create and retrieve asynchronous summaries and action-item artifacts.
  - name: Meeting Session Webhooks
    description: Outbound webhook deliveries for meeting session events.
paths:
  /meeting_sessions/{id}/transcript:
    get:
      tags:
        - Meeting Session Data
      summary: List meeting session transcript
      description: >-
        Returns transcript segments ordered by ascending `seq`. Default `limit`
        is 100 and maximum is 1,000. Continue with `after=meta.next_after`. A
        long-poll timeout returns 200 with empty `data` and `meta.next_after:
        null`; retain the cursor supplied to that request because null is not a
        replacement cursor.
      operationId: listMeetingSessionTranscript
      parameters:
        - $ref: '#/components/parameters/MeetingSessionId'
        - $ref: '#/components/parameters/After'
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/WaitSeconds'
      responses:
        '200':
          description: >-
            Successful response with transcript segments (may be empty on wait
            timeout).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptSegmentListResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
        '503':
          $ref: '#/components/responses/MeetingReadAuthUnavailable'
components:
  parameters:
    MeetingSessionId:
      name: id
      in: path
      required: true
      description: Unique identifier for the meeting session.
      schema:
        type: string
        examples:
          - mtgsess_a1b2c3d4-e5f6-7890-abcd-ef1234567890
    After:
      name: after
      in: query
      required: false
      description: Return results with a cursor position after this value.
      schema:
        type: integer
        minimum: 0
        default: 0
    Limit:
      name: limit
      in: query
      required: false
      description: Maximum number of results to return per page.
      schema:
        type: integer
        minimum: 1
        maximum: 1000
        default: 100
    WaitSeconds:
      name: wait_seconds
      in: query
      required: false
      description: >-
        Long-poll duration in seconds. The server holds the connection open for
        up to this many seconds, waiting for new or updated results before
        returning an empty response. Set to 0 for an immediate response.
      schema:
        type: integer
        minimum: 0
        maximum: 25
        default: 0
  schemas:
    TranscriptSegmentListResponse:
      type: object
      additionalProperties: false
      required:
        - data
        - meta
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TranscriptSegment'
        meta:
          type: object
          additionalProperties: false
          required:
            - next_after
          properties:
            next_after:
              type:
                - integer
                - 'null'
              description: >-
                Cursor to pass as `after` on the next request, or null when the
                response contains no segments.
      example:
        data:
          - seq: 41
            text: let's ship it
            confidence: 0.94
            speaker_label: Ada L.
            relative_ts: 1240.5
            occurred_at: '2026-06-16T09:00:42Z'
        meta:
          next_after: 41
    TranscriptSegment:
      type: object
      additionalProperties: false
      required:
        - seq
        - text
        - confidence
        - speaker_label
        - relative_ts
        - occurred_at
      properties:
        seq:
          type: integer
        text:
          type: string
        confidence:
          type:
            - number
            - 'null'
          minimum: 0
          maximum: 1
        speaker_label:
          type:
            - string
            - 'null'
        relative_ts:
          type:
            - number
            - 'null'
        occurred_at:
          type: string
          format: date-time
      example:
        seq: 1
        text: Welcome to the project kickoff.
        confidence: 0.98
        speaker_label: Speaker 1
        relative_ts: 12.5
        occurred_at: '2025-01-15T10:00:12Z'
    ErrorResponse:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: object
          additionalProperties: false
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
      examples:
        - error:
            code: invalid_request
            message: webhook_url is disabled
        - error:
            code: not_found
            message: meeting session not found
        - error:
            code: unsupported_capability
            message: avatar video is not supported on platform 'unknown'
        - error:
            code: internal_error
            message: internal server error
  responses:
    BadRequest:
      description: Bad Request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: invalid_request
              message: request is invalid
    Unauthorized:
      description: >-
        Unauthorized. On api.telnyx.com, authentication is enforced by the API
        gateway before the request reaches the Meeting service, so a missing or
        invalid API key returns the standard Telnyx error envelope (`{"errors":
        [{"code": "10009", ...}]}`) rather than the single-`error` shape below.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: unauthorized
              message: invalid or missing credentials
    Forbidden:
      description: The authenticated credential is not permitted to perform this operation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: forbidden
              message: credential is not permitted
    NotFound:
      description: Not Found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: not_found
              message: meeting session not found
    TooManyRequests:
      description: >-
        Authentication is temporarily overloaded. Retry after the number of
        seconds in `Retry-After`.
      headers:
        Retry-After:
          required: true
          description: Seconds to wait before retrying.
          schema:
            type: integer
            minimum: 1
            maximum: 5
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: auth_overloaded
              message: authentication temporarily overloaded
    InternalServerError:
      description: Internal Server Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: internal_error
              message: internal server error
    MeetingReadAuthUnavailable:
      description: Authentication is temporarily unavailable.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: auth_unavailable
              message: authentication service unavailable
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````