リアルタイム Web 検索
最大の特長は Web 連携による情報取得です。時事・トレンド・新発売の製品、さらには今日の天気のようなライブ情報に基づいて生成できます。
ByteDance のフラッグシップ画像モデル Seedream 5.0(2026年初頭)。深い推論とリアルタイム Web 検索を組み合わせ、最新の実世界情報に基づいて画像を生成する統合マルチモーダルモデルです。
Seedream 5.0 を1回のAPIコールで統合できます。1つのキー、1つの統一エンドポイント、そしてApiframe上のすべてのモデルで共通の請求。
model: "seedream-5" 最大の特長は Web 連携による情報取得です。時事・トレンド・新発売の製品、さらには今日の天気のようなライブ情報に基づいて生成できます。
多段階の思考プロセスで指示の意図をデザイナーのように読み取り、Lite 版より物理的に妥当で、幻覚(ハルシネーション)の少ない結果を生成します。
テクノロジーから人文まで幅広い知識を備え、インフォグラフィック・教育用図解・技術イラストなど情報密度の高い制作に強みを発揮します。
長く複数の条件を含むプロンプトを確実に再現し、被写体の一貫性と画像・テキストの整合でファミリー最高水準を達成します。
1回の生成で最大14枚の参照画像を融合・合成し、キャンペーンやシリーズ向けに一貫した画像セットを生成します。
EC・マーケティング・シネマティックな表現に向けてファミリー最上位の品質帯を狙いつつ、1枚あたりのコストは抑えられています。
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
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 Accepted と jobId が返ります。ステータスが COMPLETED になるまで GET /v2/jobs/{id} をポーリングする(または webhook_url を指定する)と、result フィールドに出力URLが格納されます。
{
"jobId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
"status": "QUEUED"
}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に関するよくある質問をまとめました。
ByteDance の Seedream 5.0 ファミリーのフラッグシップで、深い推論とリアルタイム Web 検索を内蔵した統合マルチモーダル画像モデルです。
生成時に Web からリアルタイム情報を取得する機能で、学習済み知識だけでなく、最新のトレンド・出来事・製品・データを画像に反映できます。
こちらはフルサイズのフラッグシップで、より多くの計算資源・強力な推論・高い品質を備えます。Lite はそれらの一部を速度と低コストに振り向けたモデルです。
リアルタイム検索と深い推論が加わり、指示追従・一貫性・世界知識が強化され、総合 Elo スコアも向上しています。
1回の生成で最大14枚まで、融合と合成に使用できます。
Apiframe のほか、ByteDance の Dreamina・CapCut アプリや主要なホスティングパートナーから利用できます。
解決しませんでしたか?
APIキーを取得すれば数分で Seedream 5.0 を統合できます — 従量課金。
ご質問はありますか? Discordに参加 または 営業に問い合わせる。