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

# Get transcript audio URL

> Return a short-lived signed URL for a transcript audio slice.



## OpenAPI

````yaml /openapi/vued-public-api.yaml get /orgs/{org_id}/transcripts/{transcript_id}/audio
openapi: 3.1.0
info:
  title: Vued Public API
  version: 0.1.0
  description: >-
    Cloud API for Vued organization metadata, signed audio URLs, API keys, and
    webhooks.
servers:
  - url: https://vued-office-api-dev.onrender.com/v1
security:
  - bearerAuth: []
tags:
  - name: Orgs
  - name: Search
  - name: Audio
  - name: Files
  - name: Directory
  - name: API Keys
  - name: Webhooks
paths:
  /orgs/{org_id}/transcripts/{transcript_id}/audio:
    get:
      tags:
        - Audio
      summary: Get transcript audio URL
      description: Return a short-lived signed URL for a transcript audio slice.
      operationId: getTranscriptAudio
      parameters:
        - $ref: '#/components/parameters/OrgId'
        - $ref: '#/components/parameters/TranscriptId'
        - $ref: '#/components/parameters/Redirect'
      responses:
        '200':
          description: Signed transcript audio URL metadata.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AudioUrl'
components:
  parameters:
    OrgId:
      name: org_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
    TranscriptId:
      name: transcript_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
    Redirect:
      name: redirect
      in: query
      schema:
        type: boolean
        default: false
  schemas:
    AudioUrl:
      type: object
      properties:
        available:
          type: boolean
        url:
          type: string
          format: uri
        expires_at:
          type: number
        retention_days:
          type: integer
        filename:
          type: string
        mime:
          type: string
        offset_secs:
          type: object
          properties:
            start:
              type: number
            end:
              type: number
        suggested_clip_secs:
          type: object
          properties:
            start:
              type: number
            end:
              type: number
            margin_secs:
              type: number
        partial:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````