> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-chore-sync-comfy-api-v2-spec.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 使用 Comfy Router 调用 Seedance 1.0 Lite T2V 250428

> 通过 Comfy Router 调用 byteplus/seedance-1-0-lite-t2v-250428：端点、请求结构以及 Router 返回的响应。

`byteplus/seedance-1-0-lite-t2v-250428` 的 API 参考，由 Comfy Router 从 BytePlus 提供。

## 快速开始

在[你的 Comfy 工作区](https://platform.comfy.org/profile/api-keys)中创建一个密钥，并将其导出为 `COMFY_API_KEY`。Python 和 TypeScript 代码片段使用 Comfy SDK（`pip install comfy-sdk`、`npm install @comfyorg/sdk`）；cURL 代码片段则是通过原始 HTTP 发起的同一调用。

**模型 ID：** `byteplus/seedance-1-0-lite-t2v-250428`

**端点：** `POST https://api.comfy.org/v2/models/byteplus/seedance-1-0-lite-t2v-250428`

<Tabs>
  <Tab title="Wait for the result">
    <CodeGroup>
      ```python Python theme={null}
      from comfy_sdk import Comfy

      # Reads COMFY_API_KEY from the environment.
      # The SDK automatically creates an idempotency key and reuses it for automatic retries.
      with Comfy() as client:
          result = client.models.run(
              "byteplus/seedance-1-0-lite-t2v-250428",
              {
                  "content": [
                      {
                          "text": "A red fox trotting through a snowy pine forest",
                          "type": "text",
                      },
                  ],
                  "duration": 5,
                  "ratio": "16:9",
                  "resolution": "720p",
              },
          )

      print(result)
      ```

      ```typescript TypeScript theme={null}
      import { comfy } from "@comfyorg/sdk";

      // Reads COMFY_API_KEY from the environment.
      // The SDK automatically creates an idempotency key and reuses it for automatic retries.
      const { data } = await comfy.models.run("byteplus/seedance-1-0-lite-t2v-250428", {
        content: [
          {
            text: "A red fox trotting through a snowy pine forest",
            type: "text",
          },
        ],
        duration: 5,
        ratio: "16:9",
        resolution: "720p",
      });

      console.log(data);
      ```

      ```bash cURL theme={null}
      curl https://api.comfy.org/v2/models/byteplus/seedance-1-0-lite-t2v-250428 \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"content\": [{\"text\":\"A red fox trotting through a snowy pine forest\",\"type\":\"text\"}], \"duration\": 5, \"ratio\": \"16:9\", \"resolution\": \"720p\"}"
      ```
    </CodeGroup>
  </Tab>

  <Tab title="Queue and collect later">
    <CodeGroup>
      ```python Python theme={null}
      from comfy_sdk import Comfy

      # Reads COMFY_API_KEY from the environment.
      # Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
      with Comfy() as client:
          handle = client.models.submit(
              "byteplus/seedance-1-0-lite-t2v-250428",
              {
                  "content": [
                      {
                          "text": "A red fox trotting through a snowy pine forest",
                          "type": "text",
                      },
                  ],
                  "duration": 5,
                  "ratio": "16:9",
                  "resolution": "720p",
              },
          )
          print("request_id:", handle.request_id)  # with the model ID, all another process needs

          # Poll until the request completes, waiting the Retry-After the server names.
          for update in handle.iter_events():
              print(update.status, update.queue_position)

          # The provider's own payload, the same value models.run() returns.
          # A request that failed or was cancelled raises the typed Router error here.
          result = handle.get()

      print(result)
      ```

      ```typescript TypeScript theme={null}
      import { comfy } from "@comfyorg/sdk";

      // Reads COMFY_API_KEY from the environment.
      // Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
      const handle = await comfy.models.submit("byteplus/seedance-1-0-lite-t2v-250428", {
        content: [
          {
            text: "A red fox trotting through a snowy pine forest",
            type: "text",
          },
        ],
        duration: 5,
        ratio: "16:9",
        resolution: "720p",
      });
      console.log("requestId:", handle.requestId); // with the model ID, all another process needs

      // Poll until the request completes, waiting the Retry-After the server names.
      for await (const update of handle.events()) {
        console.log(update.status, update.queuePosition);
      }

      // The same result models.run() returns. A request that failed or was cancelled rejects here.
      const result = await handle.get();

      console.log(result.data);
      ```

      ```bash cURL theme={null}
      # 1. Submit. Router answers 201 with request_id, status_url, response_url and cancel_url.
      curl https://api.comfy.org/v2/models/byteplus/seedance-1-0-lite-t2v-250428/requests \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"content\": [{\"text\":\"A red fox trotting through a snowy pine forest\",\"type\":\"text\"}], \"duration\": 5, \"ratio\": \"16:9\", \"resolution\": \"720p\"}"

      # 2. Poll until status is COMPLETED, waiting the Retry-After seconds each response names.
      REQUEST_ID="<request_id from the 201 body>"
      curl -i https://api.comfy.org/v2/models/byteplus/seedance-1-0-lite-t2v-250428/requests/$REQUEST_ID/status \
        -H "X-API-Key: $COMFY_API_KEY"

      # 3. Collect. 200 with the model's native output, 202 with the status body while it is still running.
      curl https://api.comfy.org/v2/models/byteplus/seedance-1-0-lite-t2v-250428/requests/$REQUEST_ID \
        -H "X-API-Key: $COMFY_API_KEY"
      ```
    </CodeGroup>
  </Tab>
</Tabs>

## Schema

### 输入

<ParamField body="callback_url" type="string (uri)">
  本次生成任务结果的回调通知地址

  格式：`uri`
</ParamField>

<ParamField body="content" type="object[]" required>
  供模型生成视频的输入内容
</ParamField>

<ParamField body="content[].audio_url" type="object">
  输入音频对象。仅 Seedance 2.5、2.0 和 2.0 fast 支持音频输入。Seedance 2.0 和 2.0 fast 不能单独使用音频，必须至少包含 1 个图像或视频；Seedance 2.5 支持仅音频输入。
</ParamField>

<ParamField body="content[].audio_url.url" type="string" required>
  音频 URL、Base64 编码或 Asset ID。
  音频 URL：音频的公开 URL（wav、mp3）。
  Base64：格式为 data:audio/\<format>;base64,\<content>
  Asset ID：格式为 asset://\<ASSET\_ID>
</ParamField>

<ParamField body="content[].image_url" type="object" />

<ParamField body="content[].image_url.url" type="string" required>
  用于图生视频生成的图像内容（当 type 为 "image\_url" 时）
  图像 URL：请确保该图像 URL 可访问。
  Base64 编码内容：格式必须为 data:image/\<format>;base64,\<content>
  Asset ID：格式为 asset://\<ASSET\_ID>
</ParamField>

<ParamField body="content[].role" type="string">
  内容项的角色/位置。
  对于图像：first\_frame、last\_frame 或 reference\_image。
  对于视频：reference\_video（仅 Seedance 2.5、2.0 和 2.0 fast）。
  对于音频：reference\_audio（仅 Seedance 2.5、2.0 和 2.0 fast）。

  可选值：`first_frame`, `last_frame`, `reference_image`, `reference_video`, `reference_audio`
</ParamField>

<ParamField body="content[].text" type="string">
  模型的输入文本信息。包含文本提示词和可选参数。

  文本提示词（必填）：使用中英文字符描述要生成的视频。

  参数（可选）：在文本提示词后添加 --\[parameters] 以控制视频规格：

  * \--resolution (--rs)：480p、720p、1080p（默认：720p）
  * \--ratio (--rt)：21:9、16:9、4:3、1:1、3:4、9:16、9:21、adaptive（默认：16:9 或 adaptive）
  * \--duration (--dur)：3-12 秒（默认：5）
  * \--framepersecond (--fps)：24（默认：24）
  * \--watermark (--wm)：true/false（默认：false）
  * \--seed (--seed)：-1 到 2^32-1（默认：-1）
  * \--camerafixed (--cf)：true/false（默认：false）

  示例："A beautiful landscape --ratio 16:9 --resolution 720p --duration 5"
</ParamField>

<ParamField body="content[].type" type="string" required>
  输入内容的类型

  可选值：`text`, `image_url`, `video_url`, `audio_url`
</ParamField>

<ParamField body="content[].video_url" type="object">
  输入视频对象。仅 Seedance 2.5、2.0 和 2.0 fast 支持视频输入。
</ParamField>

<ParamField body="content[].video_url.url" type="string" required>
  视频 URL 或 Asset ID。
  视频 URL：视频的公开 URL（mp4、mov）。
  Asset ID：格式为 asset://\<ASSET\_ID>
</ParamField>

<ParamField body="duration" type="`-1` | object">
  视频时长（秒）。Seedance 2.5：\[4,30] 或 -1（自动；视频编辑任务仅支持 -1）。Seedance 2.0 和 2.0 fast：\[4,15] 或 -1（自动）。Seedance 1.5 pro：\[4,12] 或 -1。Seedance 1.0：\[2,12]。

  范围：`2` 到 `30`
</ParamField>

<ParamField body="execution_expires_after" type="integer">
  任务超时阈值（秒）。默认 172800（48 小时）。范围：\[3600, 259200]。

  范围：`3600` 到 `259200`
</ParamField>

<ParamField body="generate_audio" type="boolean" default="true">
  Seedance 2.5、2.0、2.0 fast 和 1.5 pro 支持。生成的视频是否包含与画面同步的音频。
  true：模型输出带同步音频的视频。
  false：模型输出无声视频。
</ParamField>

<ParamField body="model" type="string">
  要调用的模型 ID。支持的模型：seedance-1-5-pro-251215、seedance-1-0-pro-250528、seedance-1-0-pro-fast-251015、seedance-1-0-lite-t2v-250428、seedance-1-0-lite-i2v-250428、dreamina-seedance-2-0-260128、dreamina-seedance-2-0-fast-260128、dreamina-seedance-2-0-mini 和 dreamina-seedance-2-5-260628。直接以 v1 调用 POST /proxy/byteplus/api/v3/contents/generations/tasks 时必须提供它，代理会拒绝任何其他值；若省略它，则返回 400。它不在本 Schema 的 `required` 列表中，因为 Comfy Router 会从 /v2/models/byteplus/\{model} 的 `{model}` 路径段填充它，因此 Router 调用方会省略它。
</ParamField>

<ParamField body="output_format" type="string" default="&#x22;mp4&#x22;">
  仅 Seedance 2.5。输出视频的容器格式。
  mp4：通用容器（H.264/AAC，yuv420p），兼容性广，文件大小更小。
  mov：专业容器（H.264 High 4:4:4 Predictive/PCM，yuv444p），颜色精度高，适合后期制作；文件大小更大。

  可选值：`mp4`, `mov`
</ParamField>

<ParamField body="ratio" type="string">
  生成的视频宽高比。Seedance 2.0 和 2.0 fast、1.5 pro 默认：adaptive。

  可选值：`16:9`, `4:3`, `1:1`, `3:4`, `9:16`, `21:9`, `9:21`, `adaptive`
</ParamField>

<ParamField body="resolution" type="string">
  视频分辨率。Seedance 2.5、2.0 和 2.0 fast、1.5 pro、1.0 lite 默认：720p。Seedance 1.0 pro 和 pro-fast 默认：1080p。
  注意：Seedance 2.0 和 2.0 fast 不支持 1080p。Seedance 2.5 支持 480p、720p 和 1080p。

  可选值：`480p`, `720p`, `1080p`, `4k`
</ParamField>

<ParamField body="return_last_frame" type="boolean" default="false">
  是否返回已生成视频的最后一帧图像。是：返回已生成视频的最后一帧图像。将此参数设置为是后，可通过调用"查询视频生成任务信息"获取最后一帧图像。该最后一帧图像为 PNG 格式，其像素宽度和高度与已生成视频一致，且不含水印。使用此参数可以生成多个连续视频：将前一个已生成视频的最后一帧作为下一个视频任务的第一帧，从而快速生成多个连续视频。
  否：不返回已生成视频的最后一帧图像。
</ParamField>

<ParamField body="seed" type="integer">
  用于控制随机性的种子整数。范围：\[-1, 2^32-1]。-1 表示使用随机种子。

  范围：`-1` 到 `4294967295`
</ParamField>

<ParamField body="service_tier" type="string">
  用于处理的服务层级。Seedance 2.5、2.0 和 2.0 fast 不支持 flex（离线推理）。

  可选值：`default`、`flex`
</ParamField>

<ParamField body="watermark" type="boolean" default="false">
  已生成视频是否包含水印。
</ParamField>

由 Router 在 `GET /v2/models/byteplus/seedance-1-0-lite-t2v-250428/openapi.json` 提供的 schema 生成，与请求到达提供商之前用于校验调用的文档相同。

### 输出

<ResponseField name="content" type="object">
  视频生成任务完成后得到的输出，其中包含输出视频的下载 URL，并且在 BytePlus 返回时，还包含其最后一帧的下载 URL。`video_url` 和 `last_frame_url` 都会被重新托管到 Comfy 存储上；这里的其他每个字段都来自 BytePlus 本身。可为 null：BytePlus 会在任务结束 24 小时后清除这些 URL，之后轮询一个已成功的文档时，`content` 可能缺失或为 null。
</ResponseField>

<ResponseField name="content.last_frame_url" type="string">
  已生成视频最后一帧的下载 URL，仅当请求设置了 `return_last_frame` 时返回。不要根据这个 URL 推断图像格式：BytePlus 在请求侧将最后一帧记为 PNG，Router 会重新托管它实际拿到的任何字节，并根据上游的 Content-Type 或内容嗅探来确定其类型，而 `image/jpeg` 只是两者都失败时的最后兜底。Router 会把最后一帧重新托管到 Comfy 存储上并改写此字段，因此它通常是一个有效期最长 24 小时的 Comfy 签名 URL：生成时签名 24 小时，并从 23 小时的备忘中重放，所以之后的轮询可能返回一个只剩一小时有效期的链接。当无法执行重新托管时，该字段会保留 BytePlus 自己的 URL，BytePlus 会在任务结束 24 小时后清除它。无论哪种情况链接都会过期，因此请下载该帧，而不要保存 URL。
</ResponseField>

<ResponseField name="content.output_format" type="string">
  已生成视频的容器格式（mp4 或 mov），当 BytePlus 将其嵌套在 `content` 内时返回。Seedance 模型更常把它作为 `content` 的顶层同级字段返回，参见顶层的 `output_format` 字段。Router 会读取两者中存在的那个。
</ResponseField>

<ResponseField name="content.video_url" type="string">
  输出视频的下载 URL。Router 会把视频重新托管到 Comfy 存储上并改写此字段，因此它通常是一个有效期最长 24 小时的 Comfy 签名 URL：生成时签名 24 小时，并从 23 小时的备忘中重放，所以之后的轮询可能返回一个只剩一小时有效期的链接。当无法执行重新托管时，该字段会保留 BytePlus 自己的 URL，BytePlus 会在任务结束 24 小时后清除它，并在某些模型上限制为 100 次下载。无论哪种情况链接都会过期，因此请下载视频，而不要保存 URL。
</ResponseField>

<ResponseField name="created_at" type="integer">
  任务创建的时间。该值为 UNIX 时间戳，单位为秒。
</ResponseField>

<ResponseField name="duration" type="number">
  已生成视频的时长，单位为秒。之所以声明为 number 而不是整数，是因为 BytePlus 在这点上并不一致：视频任务曾被观察到返回整秒，而 BytePlus 相邻的其他接口会报告小数时长，因此客户端不能假定它是整数值。这是 BytePlus 自己的字段，在成功的视频任务中返回并原样转发。
</ResponseField>

<ResponseField name="error" type="object">
  错误信息。如果任务成功，返回 null。如果任务失败，则返回错误信息。
</ResponseField>

<ResponseField name="error.code" type="string">
  错误码
</ResponseField>

<ResponseField name="error.message" type="string">
  报错信息
</ResponseField>

<ResponseField name="id" type="string">
  视频生成任务的 ID
</ResponseField>

<ResponseField name="model" type="string">
  任务所用模型的名称和版本
</ResponseField>

<ResponseField name="output_format" type="string">
  已生成视频的容器格式（mp4 或 mov），作为 `content` 的同级字段在顶层返回：Seedance 视频任务查询正是在这里返回它。这是 BytePlus 自己的字段，原样转发。
</ResponseField>

<ResponseField name="resolution" type="string">
  已生成视频的分辨率，例如 `1080p`。这是 BytePlus 自己的字段，在成功的视频任务中返回并原样转发。
</ResponseField>

<ResponseField name="seed" type="integer">
  该任务实际使用的生成种子。这是 BytePlus 自己的字段，在成功的视频任务中返回并原样转发。

  格式：`int64`
</ResponseField>

<ResponseField name="status" type="string">
  任务状态

  可能的值：`queued`、`running`、`cancelled`、`succeeded`、`failed`、`expired`
</ResponseField>

<ResponseField name="updated_at" type="integer">
  任务最后更新的时间。该值为 UNIX 时间戳，单位为秒。
</ResponseField>

<ResponseField name="usage" type="object">
  本次请求的 token 用量
</ResponseField>

<ResponseField name="usage.completion_tokens" type="integer">
  模型生成的 token 数量
</ResponseField>

<ResponseField name="usage.total_tokens" type="integer">
  对于视频生成模型，不计算输入 token 数量，默认为 0。因此 total\_tokens = completion\_tokens。
</ResponseField>

## 示例

### 输入

```json theme={null}
{
  "content": [
    {
      "text": "A red fox trotting through a snowy pine forest",
      "type": "text"
    }
  ],
  "duration": 5,
  "ratio": "16:9",
  "resolution": "720p"
}
```

### 输出

```json theme={null}
{
  "content": {
    "last_frame_url": "https://example.invalid/byteplus/seedance-1-0-lite-t2v-250428/last-frame",
    "video_url": "https://example.invalid/byteplus/seedance-1-0-lite-t2v-250428/generated.mp4"
  },
  "created_at": 1767225600,
  "duration": 5,
  "error": null,
  "id": "3f7a1b28-5c0d-4e91-8a6f-1b2c3d4e5f60",
  "model": "seedance-1-0-lite-t2v-250428",
  "output_format": "mp4",
  "resolution": "1080p",
  "seed": 1234567890123,
  "status": "succeeded",
  "updated_at": 1767225730
}
```

## 发布前须知

SDK 会生成 `Idempotency-Key` 并在自动重试中复用它。手动重试时，请复用原始 key。Router 最长可保持连接 10 分钟。

请求失败时，Router 会发送 `X-Comfy-Error-Type` 响应头说明原因。`422` 表示 Router 在调用提供商之前就拒绝了输入。生成的资源请及时下载，因为[结果链接会过期](/zh/development/comfy-router/reference#结果资产)。

<CardGroup cols={3}>
  <Card title="请求头" icon="list" href="/zh/development/comfy-router/quickstart">
    身份验证、幂等性、请求 ID、错误分类、重试节奏、消费限额。
  </Card>

  <Card title="使用 Router API" icon="code" href="/zh/development/comfy-router/quickstart">
    模型发现、校验错误、重试与计费。
  </Card>

  <Card title="限制" icon="triangle-exclamation" href="/zh/development/comfy-router/limitations">
    Router 目前不支持的功能，以及替代方案。
  </Card>
</CardGroup>
