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

# Get recording

> Returns a temporary URL to download the recording for a meeting. The URL is short-lived and should be used promptly.



## OpenAPI

````yaml GET /meetings/{meeting_id}/recording
openapi: 3.1.0
info:
  title: Timeless Public API
  version: 0.1.0
  description: >-
    The Timeless API is a REST API served over HTTPS. All requests and responses
    use JSON, and all endpoints require authentication.
servers:
  - url: https://api.timeless.day/v1
    description: Production
security:
  - HTTPBearer: []
tags:
  - name: meetings
    description: Retrieve meetings, recordings, and transcripts.
  - name: rooms
    description: Retrieve rooms that group related meetings.
  - name: documents
    description: Retrieve AI-generated meeting documents.
  - name: upload
    description: Upload audio or video files for transcription.
  - name: webhooks
    description: Manage webhook subscriptions for event notifications.
paths:
  /meetings/{meeting_id}/recording:
    get:
      tags:
        - meetings
      summary: Get recording
      description: >-
        Returns a temporary URL to download the recording for a meeting. The URL
        is short-lived and should be used promptly.
      operationId: get_meeting_recording_v1_meetings__meeting_id__recording_get
      parameters:
        - name: meeting_id
          in: path
          required: true
          schema:
            type: string
            title: Meeting Id
          description: The meeting ID (e.g., `mtg_abc123`).
          example: mtg_abc123
      responses:
        '200':
          description: The recording URL.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordingResponse'
              example:
                meeting_id: mtg_abc123
                recording_url: https://storage.example.com/recordings/abc123?token=...
        '401':
          description: Authentication required.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Meeting not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error:
                  code: not_found
                  message: Resource not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RecordingResponse:
      properties:
        meeting_id:
          type: string
          title: Meeting Id
          description: The meeting ID.
          example: mtg_abc123
        recording_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Url
          description: >-
            A temporary, signed URL to download the recording. `null` if no
            recording is available.
      type: object
      required:
        - meeting_id
        - recording_url
      title: RecordingResponse
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: not_found
            message:
              type: string
              example: Resource not found
            details:
              type: array
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string
          required:
            - code
            - message
      required:
        - error
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      description: >-
        API token from your [Timeless
        dashboard](https://my.timeless.day/api-token).

````