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

# Retrieve Video Content

> Download the video file (redirects to video URL).



## OpenAPI

````yaml /help/docs/fr/api/openapi.json get /v1/videos/{video_id}/content
openapi: 3.1.0
info:
  title: Mirage Video API
  description: API for AI-powered video generation
  version: 0.0.1
  x-generated-by: export_openapi.py
  x-generated-note: >-
    Auto-generated from FastAPI routes and Pydantic models. Do not edit manually
    - run 'make export-openapi' to regenerate.
servers:
  - url: https://api.mirage.app
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/videos/{video_id}/content:
    get:
      tags:
        - Videos
      summary: Retrieve Video Content
      description: Download the video file (redirects to video URL).
      operationId: get_video_content_v1_videos__video_id__content_get
      parameters:
        - name: video_id
          in: path
          required: true
          schema:
            type: string
            title: Video Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication.

````