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

# Dreamina Seedance 2.5

> 通过 Dreamina 路由调用 Seedance 2.5，支持多模态参考和同步音频的视频生成。

通过 Dreamina 路由调用 Seedance 2.5，支持多模态参考和同步音频的视频生成。

## 模型信息

| 字段         | 说明                           |
| ---------- | ---------------------------- |
| `model`    | dreamina-seedance-2-5-260628 |
| `endpoint` | POST /v1/video/generations   |

## 能力与使用

* 输出支持 480p、720p、1080p，默认 720p；时长为 4-30 秒或 -1 自动决定。
* model、prompt、asset 保留在顶层；content、resolution、duration、ratio、generate\_audio 等厂商字段放在 metadata。
* 视频编辑使用 metadata.duration=-1；编辑与续写使用 metadata.ratio=adaptive。1080p 输出采用 10-bit H.265/HEVC，需要兼容的播放器。

## 请求示例

调用前设置 `MIXROUTE_API_KEY`。

```bash theme={null}
curl --request POST "https://api.mixroute.ai/v1/video/generations" \
  --header "Authorization: Bearer $MIXROUTE_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "model": "dreamina-seedance-2-5-260628",
  "prompt": "A red ceramic mug slowly rotates on a white tabletop. Static camera, soft studio lighting.",
  "asset": false,
  "metadata": {
    "content": [
      {
        "type": "text",
        "text": "A red ceramic mug slowly rotates on a white tabletop. Static camera, soft studio lighting."
      }
    ],
    "duration": 4,
    "resolution": "480p",
    "ratio": "16:9",
    "generate_audio": false
  }
}'
```

## 请求字段

| 字段         | 说明                                          |
| ---------- | ------------------------------------------- |
| `model`    | 必填，使用上方完整模型 ID。                             |
| `prompt`   | 必填的 MixRoute 提示词，与 metadata.content 文本保持一致。 |
| `asset`    | 顶层媒体处理选项。                                   |
| `metadata` | 厂商字段，包括 content 及所有生成设置。                    |

提交后创建异步任务。保存返回的 MixRoute 任务 ID，通过[查询视频任务](/cn/api-reference/endpoint/query-video-task)轮询到终态；不要仅因客户端超时而重复提交。

完整请求格式见[接口说明](/cn/api-reference/endpoint/dreamina)。
