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

# Wan 3.0 Video Prime

> 万相 3.0 视频优速版，保持标准版的输入模式并提升生成速度。

万相 3.0 视频优速版，保持标准版的输入模式并提升生成速度。

## 模型信息

| 字段         | 说明                         |
| ---------- | -------------------------- |
| `model`    | wan3.0-video-prime         |
| `endpoint` | POST /v1/video/generations |

## 能力与使用

* 支持 480P、720P、1080P；生成时长为 2-30 秒或 -1 自动决定。
* 使用 metadata.input.prompt/media 与 metadata.parameters。Prime 采用万相 3.0 格式，不使用旧版 2.6 的 img\_url/size 结构。
* 包含参考视频时，输入与生成视频的总时长不得超过 30 秒；audio=false 请求无声视频。

## 请求示例

调用前设置 `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": "wan3.0-video-prime",
  "metadata": {
    "input": {
      "prompt": "A red ceramic mug slowly rotates on a white tabletop. Static camera, soft studio lighting."
    },
    "parameters": {
      "resolution": "480P",
      "duration": 2,
      "audio": false,
      "prompt_extend": false
    }
  }
}'
```

## 请求字段

| 字段                    | 说明              |
| --------------------- | --------------- |
| `model`               | 必填，使用上方完整模型 ID。 |
| `metadata.input`      | 提示词及对应模型的媒体输入。  |
| `metadata.parameters` | 对应模型的生成设置。      |

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

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