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

# Get a meeting transcript

> Retrieve the transcript for a meeting. The transcript field is null when the meeting has no transcript. When present, transcript is a structured array of text segments with timestamps and participant names.



## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/meetings/{meeting_id}/transcript
openapi: 3.0.1
info:
  title: Slant Public API V1
  version: v1
  description: Public API for creating and managing resources in Slant
  contact:
    name: Slant API Support
    email: api@slant.com
servers:
  - url: https://api.slant.app
security:
  - bearer: []
paths:
  /v1/meetings/{meeting_id}/transcript:
    parameters:
      - name: meeting_id
        in: path
        required: true
        description: The meeting ID
        schema:
          type: string
    get:
      tags:
        - Meetings
      summary: Get a meeting transcript
      description: >-
        Retrieve the transcript for a meeting. The transcript field is null when
        the meeting has no transcript. When present, transcript is a structured
        array of text segments with timestamps and participant names.
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                type: object
                required:
                  - meeting_id
                properties:
                  meeting_id:
                    type: string
                  transcript:
                    type: array
                    nullable: true
                    items:
                      type: object
                      required:
                        - text
                        - participant
                      properties:
                        text:
                          type: string
                          example: hello
                        start_timestamp:
                          type: object
                          nullable: true
                        end_timestamp:
                          type: object
                          nullable: true
                        participant:
                          type: object
                          required:
                            - name
                          properties:
                            name:
                              type: string
                              example: Speaker A
        '401':
          description: unauthorized - missing or invalid token
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                  - detail
                properties:
                  error:
                    type: string
                    description: Error code
                    enum:
                      - token_missing
                      - token_invalid
                  detail:
                    oneOf:
                      - type: string
                        description: Human-readable error description
                      - type: array
                        items:
                          type: string
                        description: Array of validation error messages
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      bearerFormat: OAuth
      description: OAuth 2.0 Bearer Token from Clerk authentication

````