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

# Get Meeting Transcript

> ミーティングの文字起こしデータを取得します。
話者ごとの発言テキストとワードレベルのタイミング情報を含みます。
対象ミーティングの `visibility_scope` が `WORKSPACE_ONLY` の場合のみ返却されます。
`visibility_scope` が `ATTENDEES_ONLY` の場合は 403 を返します。
この制約は Get Meeting と同じ visibility ceiling に基づきます。




## OpenAPI

````yaml /openapi.yaml get /v1/meetings/{meetingId}/transcript
openapi: 3.1.0
info:
  title: Frictio Public API
  version: 1.0.0-beta
servers:
  - url: https://public-api.frictio.ai
security:
  - ApiKeyAuth: []
paths:
  /v1/meetings/{meetingId}/transcript:
    get:
      summary: Get Meeting Transcript
      description: |
        ミーティングの文字起こしデータを取得します。
        話者ごとの発言テキストとワードレベルのタイミング情報を含みます。
        対象ミーティングの `visibility_scope` が `WORKSPACE_ONLY` の場合のみ返却されます。
        `visibility_scope` が `ATTENDEES_ONLY` の場合は 403 を返します。
        この制約は Get Meeting と同じ visibility ceiling に基づきます。
      operationId: getMeetingTranscript
      parameters:
        - $ref: '#/components/parameters/workspaceId'
        - $ref: '#/components/parameters/meetingId'
      responses:
        '200':
          description: 成功
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: array
                    description: 文字起こしリスト（話者の発言単位）
                    items:
                      $ref: '#/components/schemas/Transcript'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    workspaceId:
      name: X-Workspace-Id
      in: header
      required: true
      description: ワークスペースID
      schema:
        type: string
      example: e1f2a3b4-...
    meetingId:
      name: meetingId
      in: path
      required: true
      description: ミーティングID
      schema:
        type: string
      example: a1b2c3d4-...
  schemas:
    Transcript:
      type: object
      description: 話者の1発言ごとの文字起こしデータ
      required:
        - speaker_id
        - speaker_name
        - text
        - elapsed_seconds
        - words
        - contact_id
      properties:
        speaker_id:
          type: string
          description: 話者ID
          example: '100'
        speaker_name:
          type:
            - string
            - 'null'
          description: 話者名
          example: Yusuke Ohashi
        contact_id:
          type:
            - string
            - 'null'
          description: |
            話者に紐づくContactのID。Meeting詳細のrelated_objectsを参照。
            話者とContactが紐づかない場合はnull。
          example: a1b2c3d4-...
        text:
          type: string
          description: 発言テキスト
          example: 今回のPoC、ユーザー登録の導線がちょっと複雑かなと思ったんですが
        elapsed_seconds:
          type: number
          description: 録音開始からの経過秒数
          example: 3
        words:
          type: array
          description: ワードレベルのタイミング情報
          items:
            $ref: '#/components/schemas/TranscriptWord'
    TranscriptWord:
      type: object
      required:
        - text
        - start_time
        - end_time
      properties:
        text:
          type: string
          description: テキスト
          example: 今回のPoC
        start_time:
          type: number
          description: 開始からの秒数
          example: 3
        end_time:
          type: number
          description: 終了の秒数
          example: 5.2
    Error:
      type: object
      required:
        - statusCode
        - message
      properties:
        statusCode:
          type: integer
          description: HTTPステータスコード
          example: 404
        message:
          type: string
          description: エラーメッセージ
          example: Meeting not found
        error:
          type: string
          description: |
            エラー種別。メッセージ文字列付きで例外が生成された場合のみ含まれます。
          example: Not Found
  responses:
    Unauthorized:
      description: APIキーが無効、失効、期限切れ、または未指定です
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            statusCode: 401
            message: Invalid API key
            error: Unauthorized
    Forbidden:
      description: 権限エラー
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            statusCode: 403
            message: Forbidden
    NotFound:
      description: リソースが見つかりません
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            statusCode: 404
            message: Not Found
    TooManyRequests:
      description: レートリミット超過
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            statusCode: 429
            message: Too Many Requests
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````