Seedream 5.0 icon

Seedream 5.0 API

ByteDance のフラッグシップ画像モデル Seedream 5.0(2026年初頭)。深い推論とリアルタイム Web 検索を組み合わせ、最新の実世界情報に基づいて画像を生成する統合マルチモーダルモデルです。

Seedream 5.0 を1回のAPIコールで統合できます。1つのキー、1つの統一エンドポイント、そしてApiframe上のすべてのモデルで共通の請求。

model: "seedream-5"

Seedream 5.0 の特長

リアルタイム Web 検索

最大の特長は Web 連携による情報取得です。時事・トレンド・新発売の製品、さらには今日の天気のようなライブ情報に基づいて生成できます。

フラッグシップ級の視覚的推論

多段階の思考プロセスで指示の意図をデザイナーのように読み取り、Lite 版より物理的に妥当で、幻覚(ハルシネーション)の少ない結果を生成します。

深い世界知識

テクノロジーから人文まで幅広い知識を備え、インフォグラフィック・教育用図解・技術イラストなど情報密度の高い制作に強みを発揮します。

クラス最高の指示追従

長く複数の条件を含むプロンプトを確実に再現し、被写体の一貫性と画像・テキストの整合でファミリー最高水準を達成します。

複数画像入力とバッチ生成

1回の生成で最大14枚の参照画像を融合・合成し、キャンペーンやシリーズ向けに一貫した画像セットを生成します。

高解像度で商用向けに最適化

EC・マーケティング・シネマティックな表現に向けてファミリー最上位の品質帯を狙いつつ、1枚あたりのコストは抑えられています。

Seedream 5.0 で作成

Apiframeの Seedream 5.0 API で生成した出力例です。

サンプル準備中

A cinematic portrait of an astronaut in a neon-lit alley, 85mm, shallow depth of field

サンプル準備中

Cozy isometric coffee shop, warm morning light, highly detailed 3D render

サンプル準備中

A majestic snow leopard on a misty mountain ridge at golden hour

概要

エンドポイント
POST /v2/images/generate
モデルID
seedream-5
パラメータキー
seedreamParams
モダリティ
画像
プロバイダー
ByteDance
平均完了時間
~15s

機能

アスペクト比1:1, 3:4, 4:3, 9:16, 16:9
画像入力対応
平均時間~15秒

クイックスタート

APIキーを添えて POST /v2/images/generate に1回リクエストを送るだけで Seedream 5.0 による生成が始まります。レスポンスには、ポーリングまたはWebhookで受け取れる jobId が返ります。

curl -X POST https://api.apiframe.ai/v2/images/generate \
  -H "X-API-Key: afk_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
        "prompt": "a sleek silver sports car on a coastal highway at sunset, hyper-realistic",
        "model": "seedream-5",
        "seedreamParams": {
            "image_input": "https://example.com/input.jpg",
            "output_format": "jpg",
            "guidance_scale": 3,
            "use_pre_llm": false
        }
    }'
import requests

response = requests.post(
    "https://api.apiframe.ai/v2/images/generate",
    headers={
        "X-API-Key": "afk_your_api_key_here",
        "Content-Type": "application/json",
    },
    json={
        "prompt": "a sleek silver sports car on a coastal highway at sunset, hyper-realistic",
        "model": "seedream-5",
        "seedreamParams": {
            "image_input": "https://example.com/input.jpg",
            "output_format": "jpg",
            "guidance_scale": 3,
            "use_pre_llm": False
        }
    },
)
print(response.json())  # { "jobId": "...", "status": "QUEUED" }
const response = await fetch("https://api.apiframe.ai/v2/images/generate", {
  method: "POST",
  headers: {
    "X-API-Key": "afk_your_api_key_here",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "prompt": "a sleek silver sports car on a coastal highway at sunset, hyper-realistic",
    "model": "seedream-5",
    "seedreamParams": {
      "image_input": "https://example.com/input.jpg",
      "output_format": "jpg",
      "guidance_scale": 3,
      "use_pre_llm": false
    }
  }),
});
const { jobId } = await response.json();
console.log(jobId);

レスポンスとジョブのライフサイクル

生成は非同期で行われます。送信が成功すると 202 AcceptedjobId が返ります。ステータスが COMPLETED になるまで GET /v2/jobs/{id} をポーリングする(または webhook_url を指定する)と、result フィールドに出力URLが格納されます。

1. 送信レスポンス (202)

{
  "jobId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
  "status": "QUEUED"
}

2. 結果をポーリング

curl https://api.apiframe.ai/v2/jobs/JOB_ID \
  -H "X-API-Key: afk_your_api_key_here"
import requests, time

while True:
    job = requests.get(
        "https://api.apiframe.ai/v2/jobs/JOB_ID",
        headers={"X-API-Key": "afk_your_api_key_here"},
    ).json()
    if job["status"] in ("COMPLETED", "FAILED"):
        break
    time.sleep(2)
print(job["result"])
let job;
do {
  await new Promise((r) => setTimeout(r, 2000));
  job = await fetch("https://api.apiframe.ai/v2/jobs/JOB_ID", {
    headers: { "X-API-Key": "afk_your_api_key_here" },
  }).then((r) => r.json());
} while (job.status !== "COMPLETED" && job.status !== "FAILED");
console.log(job.result);

入力スキーマ

Seedream 5.0 エンドポイントが受け付けるリクエストパラメータです。モデル固有のオプションは、下記のパラメータオブジェクトの中にネストされます。

パラメータ 必須 デフォルト 許可値 / 範囲 説明
prompt string 必須 生成する内容のテキスト説明。
model string 必須 "seedream-5" "seedream-5" このエンドポイントのモデル識別子。
seedreamParams.image_input string (URL) 任意 Reference image (URL)
seedreamParams.output_format string 任意 "jpg" "jpg", "png" Output format
seedreamParams.guidance_scale number 任意 3 min 1, max 10, step 0.5 Guidance
seedreamParams.use_pre_llm boolean 任意 false Pre-process the prompt with an LLM.
seedreamParams.enhance_prompt boolean 任意 false Enhance prompt
seedreamParams.seed number 任意 step 1 Reuse a number to reproduce the same result.

よくある質問

Seedream 5.0 APIに関するよくある質問をまとめました。

Seedream 5.0 とは何ですか?

ByteDance の Seedream 5.0 ファミリーのフラッグシップで、深い推論とリアルタイム Web 検索を内蔵した統合マルチモーダル画像モデルです。

Web 検索とは何ですか?

生成時に Web からリアルタイム情報を取得する機能で、学習済み知識だけでなく、最新のトレンド・出来事・製品・データを画像に反映できます。

Seedream 5 Lite との違いは?

こちらはフルサイズのフラッグシップで、より多くの計算資源・強力な推論・高い品質を備えます。Lite はそれらの一部を速度と低コストに振り向けたモデルです。

Seedream 4.5 との違いは?

リアルタイム検索と深い推論が加わり、指示追従・一貫性・世界知識が強化され、総合 Elo スコアも向上しています。

参照画像は何枚まで使えますか?

1回の生成で最大14枚まで、融合と合成に使用できます。

どこで利用できますか?

Apiframe のほか、ByteDance の Dreamina・CapCut アプリや主要なホスティングパートナーから利用できます。

解決しませんでしたか?

Seedream 5.0 API で開発を始めよう

APIキーを取得すれば数分で Seedream 5.0 を統合できます — 従量課金。

無料クレジットですぐに開始
すべてのモデルを1つのAPIで
Webhook・SDK・冪等性に対応
プロバイダーのアカウント不要

ご質問はありますか? Discordに参加 または 営業に問い合わせる