# 下载视频文件

## 1. 概述

通过本接口下载完成的视频文件。在发起之前，您需要调用[创建视频生成任务](/test/compute/aig/video-generation/openai-sora/create-video.md)，获取到视频的`id`，作为`video_id`参数添加到url中使用。

## 2. 请求说明

* **请求方法**:`GET`
* **请求地址**:

  > `https://gateway.theturbo.ai/v1/videos/{video_id}/content`

***

## 3. 请求参数

### 3.1 Header 参数

| 参数名称            | 类型     | 必填 | 说明                                         | 示例值                    |
| --------------- | ------ | -- | ------------------------------------------ | ---------------------- |
| `Authorization` | string | 是  | 身份验证所需的 API\_KEY，格式 `Bearer $YOUR_API_KEY` | `Bearer $YOUR_API_KEY` |

***

## 4. 请求示例

```sh
curl https://gateway.theturbo.ai/v1/videos/video_68f742df11b8819094cfb7c08788ed02/content \
	-H "Authorization: Bearer $YOUR_API_KEY"
```

## 5. 响应示例

```http
HTTP/1.1 200 OK
Content-Type: video/mp4
Content-Length: 947046
Date: Tue, 21 Oct 2025 09:30:20 GMT

视频mp4文件
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.console.zenlayer.com/test/compute/aig/video-generation/openai-sora/retrieve-video-content.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
