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

# Vidu Q1

> Vidu Q1 —— 统一定价的 5 秒 / 1080p 文本、图像与参考视频生成。

|           |                                                         |
| --------- | ------------------------------------------------------- |
| **模型 ID** | `vidu/q1-t2v`, `vidu/q1-i2v`, `vidu/q1-r2v`             |
| **家族**    | `vidu-q1`                                               |
| **任务**    | `text-to-video`, `image-to-video`, `reference-to-video` |
| **模态**    | 视频                                                      |
| **上游**    | Vidu Q1                                                 |

Q1 生成固定的 **5 秒、1080p** 片段。时长和分辨率
均不可调整。

## 端点

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

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

## 定价

每个 Q1 任务统一 **$0.40/视频** 刊例价 → 实扣 **$0.34**（85 折）。

## 参数

<ParamField body="prompt" type="string">
  文本提示词。对 `t2v` 和 `r2v` **必填**；对 `i2v` 可选
  （源图像已承载创作意图）。最多 1500 个字符。
</ParamField>

<ParamField body="image_urls" type="string[]">
  源图像（公开的 HTTPS）。对 `i2v`（恰好 1 张）和
  `r2v`（1–7 张参考图像）**必填**。`t2v` 不使用此参数。
</ParamField>

<ParamField body="style" type="enum" default="&#x22;general&#x22;">
  仅 `t2v`。取值为 `general`、`anime` 之一。
</ParamField>

<ParamField body="aspect_ratio" type="enum" default="&#x22;16:9&#x22;">
  仅 `t2v` / `r2v`。取值为 `16:9`、`9:16`、`1:1` 之一。
</ParamField>

<ParamField body="movement_amplitude" type="enum" default="&#x22;auto&#x22;">
  镜头/主体运动。取值为 `auto`、`small`、`medium`、`large` 之一。
</ParamField>

<ParamField body="bgm" type="boolean" default="false">
  添加一段自动生成的背景音乐音轨。
</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": "vidu/q1-i2v",
    "image_urls": ["https://example.com/cat.jpg"],
    "prompt": "the cat slowly turns its head"
  }'
```

```json theme={null}
{ "id": "vid_abc123…", "status": "pending", "model": "vidu/q1-i2v" }
```

## 参考
