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

# Download generated video content



## OpenAPI

````yaml /api-reference/openapi.json get /v1/videos/{video_id}/content
openapi: 3.1.0
info:
  title: SynapsAI Inference API
  version: 1.0.0
servers:
  - url: https://api.synapsai.cloud
    description: Production server
security: []
paths:
  /v1/videos/{video_id}/content:
    get:
      summary: Download generated video content
      parameters:
        - name: video_id
          in: path
          required: true
          schema:
            type: string
        - name: variant
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/VideoContentVariant'
          description: Optional content variant to download
      responses:
        '200':
          description: Binary video content
          content:
            video/mp4:
              schema:
                type: string
                format: binary
            application/octet-stream:
              schema:
                type: string
                format: binary
            image/png:
              schema:
                type: string
                format: binary
components:
  schemas:
    VideoContentVariant:
      type: string
      description: Downloadable video asset variants
      enum:
        - video
        - thumbnail
        - spritesheet

````