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

# /v1/videos/{video_id}/content

> 완료된 비디오 생성 작업의 바이너리 콘텐츠를 다운로드합니다.

작업이 완료된 후 이 엔드포인트를 사용하여 최종 비디오 자산 또는 콘텐츠 스트림을 가져옵니다.

* `Authorization: Bearer {API_KEY}`로 인증
* 경로 매개변수는 여전히 `video_id`입니다.
* 상태 엔드포인트가 완료를 확인한 후에만 이 호출을 호출하세요.
* 대용량 다운로드는 백엔드에서 더 잘 프록시되거나 서명되는 경우가 많습니다.


## OpenAPI

````yaml GET /v1/videos/{video_id}/content
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://maas.apigo.ai
security:
  - bearerAuth: []
paths:
  /v1/videos/{video_id}/content:
    get:
      summary: OpenAI video content
      description: Downloads the binary content of a completed video generation task.
      parameters:
        - name: video_id
          in: path
          description: Video ID
          required: true
          schema:
            type: string
            example: video_123456789
      responses:
        '200':
          description: Successful video content response
          content:
            video/mp4:
              schema:
                type: string
                format: binary
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````