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

# Seedream-5.0 圖像生成

> 使用 Seedream 5.0 lite 模型生成高質量圖像，支持 2K/3K 分辨率與聯網搜索

* Seedream 5.0 lite 最新圖像生成模型，由字節跳動 Seed 團隊研發
* 通過 model 參數選擇 `doubao-seedream-5-0` 模型
* 支持文生圖、圖生圖、多圖參考等生成模式
* 新增**聯網搜索**能力，可獲取最新現實信息輔助生成
* 支持 **2K** 和 **3K** 分辨率輸出
* 異步任務管理，通過任務 ID 查詢結果

<Warning>
  **重要變更**：爲了更好的性能和成本控制，我們不再支持在 `image_urls` 中直接傳入 base64 圖片數據。請先使用 [上傳圖片接口](../../uploads/images) 上傳圖片，獲取 URL 後再調用本接口。
</Warning>

## Authorizations

<ParamField header="Authorization" type="string" required>
  所有接口均需要使用 Bearer Token 進行認證

  獲取 API Key：訪問 [API Key 管理頁面](https://toapis.com/console/token) 獲取您的 API Key

  使用時在請求頭中添加：

  ```
  Authorization: Bearer YOUR_API_KEY
  ```
</ParamField>

## Body

<ParamField body="model" type="string" default="doubao-seedream-5-0" required>
  圖像生成模型名稱

  示例：`"doubao-seedream-5-0"`
</ParamField>

<ParamField body="prompt" type="string" required>
  圖像生成的文本描述
</ParamField>

<ParamField body="size" type="string" default="1:1">
  圖像寬高比

  支持的寬高比：

  * `1:1` - 正方形（默認）
  * `4:3` - 橫向 4:3
  * `3:4` - 豎向 3:4
  * `16:9` - 橫向寬屏
  * `9:16` - 豎向長圖
  * `3:2` - 橫向 3:2
  * `2:3` - 豎向 2:3
  * `21:9` - 超寬屏
  * `9:21` - 超窄屏
</ParamField>

<ParamField body="n" type="integer" default={1}>
  生成圖像的數量

  範圍：1-15（最少 1 張，最多 15 張）

  默認：1

  **注意：**

  * 參考圖像 + 生成圖像總數必須 ≤ 15
  * **必須輸入純數字（如 `1`），不要加引號，否則會報錯**

  會根據生成數量進行預扣費
</ParamField>

<ParamField body="image_urls" type="string[]">
  參考圖像 URL 列表，用於圖生圖或圖像編輯

  **⚠️ 僅支持 URL 格式（不再支持 base64）**

  * 公開可訪問的圖像 URL（http\:// 或 https\://）
  * 可使用 [上傳圖片接口](../../uploads/images) 上傳本地圖片獲取 URL

  **限制：**

  * 最多 10 張圖片
  * 圖像格式：jpeg, png
  * 寬高比（寬/高）範圍：\[1/3, 3]
  * 寬度和高度（px）> 14
  * 大小：不超過 10MB
  * 總像素：不超過 6000×6000 px
</ParamField>

<ParamField body="metadata" type="object">
  渠道特有參數，用於傳遞 Seedream 5.0 模型的高級配置

  <Expandable title="metadata 屬性">
    <ParamField body="metadata.resolution" type="string" default="2K">
      圖像分辨率

      支持的分辨率：

      * `2K` - 標準分辨率（默認）
      * `3K` - 高清分辨率

      > **注意：** Seedream 5.0 不支持 1K 和 4K 分辨率

      **分辨率參考尺寸：**

      | 分辨率 | 1:1 尺寸    | 16:9 尺寸   |
      | --- | --------- | --------- |
      | 2K  | 2048×2048 | 2848×1600 |
      | 3K  | 3072×3072 | 4096×2304 |

      總像素範圍：2560×1440 \~ 3072×3072×1.1025（約 1040 萬像素）
    </ParamField>

    <ParamField body="metadata.sequential_image_generation" type="string" default="disabled">
      順序圖像生成模式（豆包專屬功能）

      控制是否生成多張圖像：

      * `disabled`：禁用順序模式，即使有多張參考圖像也只生成 1 張（默認）
      * `auto`：啓用順序模式，可以生成多張圖像

      **使用說明：**

      * ✅ 設置 `n: 3` 或使用 `sequential_image_generation: "auto"` + `max_images: 3`
      * ✅ 支持文生組圖：僅提供文本提示詞，最多生成 15 張圖像
      * ✅ 支持圖生圖/圖生組圖：提供 `image_urls`，基於參考圖像生成多張圖像
      * ⚠️ 當 `n > 1` 時，會自動設置爲 `auto`

      **注意：**

      * 輸入的參考圖數量 + 最終生成圖片數量 ≤ 15 張
    </ParamField>

    <ParamField body="metadata.sequential_image_generation_options" type="object">
      順序圖像生成選項

      當 `sequential_image_generation` 設置爲 `auto` 時可用

      **屬性：**

      * `max_images`（整數）：指定生成的圖像數量，範圍：1-15

      **示例：**

      ```json theme={null}
      "sequential_image_generation_options": { "max_images": 3 }
      ```
    </ParamField>

    <ParamField body="metadata.watermark" type="boolean" default={false}>
      是否爲生成的圖像添加水印

      * `true`：添加水印
      * `false`：不添加水印（默認）
    </ParamField>
  </Expandable>
</ParamField>

## Response

<ResponseField name="id" type="string">
  任務唯一標識符，用於查詢任務狀態
</ResponseField>

<ResponseField name="object" type="string">
  對象類型，固定爲 `generation.task`
</ResponseField>

<ResponseField name="model" type="string">
  使用的模型名稱
</ResponseField>

<ResponseField name="status" type="string">
  任務狀態

  * `queued` - 排隊等待處理
  * `in_progress` - 處理中
  * `completed` - 成功完成
  * `failed` - 失敗
</ResponseField>

<ResponseField name="progress" type="integer">
  任務進度百分比（0-100）
</ResponseField>

<ResponseField name="created_at" type="integer">
  任務創建時間戳（Unix 時間戳）
</ResponseField>

<ResponseField name="metadata" type="object">
  任務元數據
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url https://toapis.com/v1/images/generations \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "model": "doubao-seedream-5-0",
      "prompt": "可愛的熊貓在竹林中玩耍",
      "size": "1:1",
      "n": 1,
      "metadata": {
        "resolution": "2K"
      }
    }'
  ```

  ```bash cURL (圖生圖) theme={null}
  curl --request POST \
    --url https://toapis.com/v1/images/generations \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "model": "doubao-seedream-5-0",
      "prompt": "可愛的熊貓在竹林中玩耍",
      "size": "1:1",
      "n": 1,
      "image_urls": [
        "https://example.com/panda.jpg"
      ],
      "metadata": {
        "resolution": "3K"
      }
    }'
  ```

  ```bash cURL (組圖) theme={null}
  curl --request POST \
    --url https://toapis.com/v1/images/generations \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "model": "doubao-seedream-5-0",
      "prompt": "可愛的熊貓在竹林中玩耍",
      "size": "1:1",
      "n": 4,
      "metadata": {
        "resolution": "2K",
        "sequential_image_generation": "auto",
        "sequential_image_generation_options": { "max_images": 4 },
        "watermark": false
      }
    }'
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      "https://toapis.com/v1/images/generations",
      headers={
          "Authorization": "Bearer your-ToAPIs-key",
          "Content-Type": "application/json"
      },
      json={
          "model": "doubao-seedream-5-0",
          "prompt": "可愛的熊貓在竹林中玩耍",
          "size": "1:1",
          "n": 1,
          "metadata": {
              "resolution": "2K"
          }
      }
  )

  task = response.json()
  print(f"任務 ID: {task['id']}")
  print(f"狀態: {task['status']}")
  ```

  ```python Python (圖生圖) theme={null}
  import requests

  response = requests.post(
      "https://toapis.com/v1/images/generations",
      headers={
          "Authorization": "Bearer your-ToAPIs-key",
          "Content-Type": "application/json"
      },
      json={
          "model": "doubao-seedream-5-0",
          "prompt": "可愛的熊貓在竹林中玩耍",
          "size": "1:1",
          "n": 1,
          "image_urls": ["https://example.com/panda.jpg"],
          "metadata": {
              "resolution": "3K"
          }
      }
  )

  task = response.json()
  print(f"任務 ID: {task['id']}")
  print(f"狀態: {task['status']}")
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://toapis.com/v1/images/generations', {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer your-ToAPIs-key',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      model: 'doubao-seedream-5-0',
      prompt: '可愛的熊貓在竹林中玩耍',
      size: '1:1',
      n: 1,
      metadata: {
        resolution: '2K'
      }
    })
  });

  const task = await response.json();
  console.log(`任務 ID: ${task.id}`);
  console.log(`狀態: ${task.status}`);
  ```

  ```javascript JavaScript (圖生圖) theme={null}
  const response = await fetch('https://toapis.com/v1/images/generations', {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer your-ToAPIs-key',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      model: 'doubao-seedream-5-0',
      prompt: '可愛的熊貓在竹林中玩耍',
      size: '1:1',
      n: 1,
      image_urls: ['https://example.com/panda.jpg'],
      metadata: {
        resolution: '3K'
      }
    })
  });

  const task = await response.json();
  console.log(`任務 ID: ${task.id}`);
  console.log(`狀態: ${task.status}`);
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "task_img_abc123def456",
    "object": "generation.task",
    "model": "doubao-seedream-5-0",
    "status": "queued",
    "progress": 0,
    "created_at": 1703884800,
    "metadata": {}
  }
  ```
</ResponseExample>
