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

# Doubao-Seedance 2.0 快速版 — 图生视频

> 加速、低成本的 Doubao-Seedance 2.0 —— 仅支持 720p 的图生视频。

|           |                                    |
| --------- | ---------------------------------- |
| **模型 ID** | `bytedance/seedance-2-fast-i2v`    |
| **系列**    | `seedance-2-fast`                  |
| **任务**    | `image-to-video`                   |
| **模态**    | 视频                                 |
| **上游**    | ByteDance Doubao-Seedance 2.0（快速版） |

<Note>
  快速版档位经过加速且成本更低，但**仅支持 720p** ——
  `resolution: "1080p"` 会被拒绝。如需 1080p，请使用[标准版模型](/bytedance-seedance-2-api/image-to-video)。
</Note>

## 端点

```http theme={null}
POST https://vibetoken.cn/v1/videos/generations
```

异步 —— 返回 `{id, status: "pending"}`；轮询 `GET /v1/videos/generations/{id}` 直到 `success` 或 `failed`。

## 参数

<ParamField body="prompt" type="string" required>
  描述所需视频的文本提示词。最多 5000 个字符。
</ParamField>

<ParamField body="image_urls" type="string[]" required>
  恰好一张源图像（公开的 HTTPS URL），用于驱动生成。
</ParamField>

<ParamField body="resolution" type="&#x22;720p&#x22;" default="&#x22;720p&#x22;">
  快速版仅支持 720p。
</ParamField>

<ParamField body="ratio" type="string" default="&#x22;16:9&#x22;">
  宽高比：`16:9`、`9:16`、`1:1`、`4:3`、`3:4`、`21:9`。
</ParamField>

<ParamField body="duration" type="integer" default="5">
  片段时长（秒）。取值范围 `[3, 12]`。
</ParamField>

<ParamField body="seed" type="integer">
  可复现种子。取值范围 `[0, 2147483647]`。
</ParamField>

## 示例

```bash theme={null}
curl https://vibetoken.cn/v1/videos/generations \
  -H "Authorization: Bearer $VIBETOKEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "bytedance/seedance-2-fast-i2v",
    "image_urls": ["https://example.com/scene.jpg"],
    "prompt": "镜头缓缓推进"
  }'
```

## 参见

完整的请求/响应结构与定价：[视频生成](/api-reference/videos)。
