> ## 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 API

> Doubao-Seedance 2.0 快速上手——支持 720p / 1080p 的文生视频与图生视频，并提供成本更低的 Fast 档位。

## 概览

**Doubao-Seedance 2.0** 是字节跳动在 VibeToken 上的视频生成模型系列，
通过 amux provider 提供服务。共开放两个档位——
**Standard**（`doubao-seedance-2.0`，720p/1080p，原生音频）与
**Fast**（`doubao-seedance-2.0-fast`，仅 720p，加速且
更便宜）——每个档位均提供文生视频与图生视频。

|              |                                      |
| ------------ | ------------------------------------ |
| **Provider** | ByteDance (via amux)                 |
| **系列**       | `seedance-2`, `seedance-2-fast`      |
| **模态**       | Video                                |
| **支持的任务**    | `text-to-video`, `image-to-video`    |
| **分辨率**      | 720p, 1080p (Standard) · 720p (Fast) |

## 端点

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

这是一个**异步**端点。POST 会立即返回
`{id, status: "pending"}`；请轮询 `GET /v1/videos/generations/{id}`
直到 `status` 变为 `success`（携带 `data: [{url}]`）或 `failed`。

## 支持的任务

* [`text-to-video`](/amux-seedance-2-api/text-to-video) —
  `bytedance/seedance-2-t2v`, `bytedance/seedance-2-fast-t2v`
* [`image-to-video`](/amux-seedance-2-api/image-to-video) —
  `bytedance/seedance-2-i2v`, `bytedance/seedance-2-fast-i2v`

## 定价

按输出视频的每秒计费；账单为 `rate × duration`。Standard 支持
720p / 1080p；Fast 仅支持 720p。

| Model                | 720p        | 1080p       | 5s @ 720p |
| -------------------- | ----------- | ----------- | --------- |
| Standard (t2v / i2v) | \$0.204 / s | \$0.510 / s | \$1.02    |
| Fast (t2v / i2v)     | \$0.238 / s | —           | \$1.19    |

## 认证

所有请求都需要 Bearer token——请在
[vibetoken.cn/api-key](https://vibetoken.cn/api-key) 创建。

```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-t2v", "prompt": "…"}'
```
