鮮明な 1K / 2K 出力
1K(約2MP)と 2K(約4MP)で鮮明な画像を生成します。価格は解像度に応じた段階制で、必要なディテールにだけ支払えます。
ByteDance のフラッグシップ画像・編集モデル Seedream 5.0 Pro(2026年中頃)。テキストや最大10枚の参照画像から、高度な推論と精密編集で鮮明な 1K・2K 画像を生成します。
Seedream 5.0 Pro を1回のAPIコールで統合できます。1つのキー、1つの統一エンドポイント、そしてApiframe上のすべてのモデルで共通の請求。
model: "seedream-5-pro" 1K(約2MP)と 2K(約4MP)で鮮明な画像を生成します。価格は解像度に応じた段階制で、必要なディテールにだけ支払えます。
単一・複数参照の生成に最大10枚の参照画像を使用でき、商品配置・キャラクターの一貫性・シーン合成に強みを発揮します。
深い思考プロセスでデータ・概念・長文を、インフォグラフィック・ポスター・UI モックアップ・図表などの構造化されたレイアウトに1回で変換します。
領域を指定した精密な編集に対応し、テキスト・被写体・背景などの編集可能な要素に画像を分離。全体を再生成せずに一部だけを変更できます。
右横書きレイアウトやアクセント付き文字を含む14言語で正確なテキストを描画し、従来世代から大きく進化しています。
物理的な光・素材の質感・肌のテクスチャ・複数人物の合成を強化し、説得力のある商用品質の結果を実現します。
Apiframeの Seedream 5.0 Pro 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 Pro による生成が始まります。レスポンスには、ポーリングまたは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-pro",
"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-pro",
"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-pro",
"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 Pro エンドポイントが受け付けるリクエストパラメータです。モデル固有のオプションは、下記のパラメータオブジェクトの中にネストされます。
| パラメータ | 型 | 必須 | デフォルト | 許可値 / 範囲 | 説明 |
|---|---|---|---|---|---|
| prompt | string | 必須 | — | — | 生成する内容のテキスト説明。 |
| model | string | 必須 | "seedream-5-pro" | "seedream-5-pro" | このエンドポイントのモデル識別子。 |
| 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 Pro APIに関するよくある質問をまとめました。
ByteDance のフラッグシップ Seedream 5.0 Pro で、テキストや最大10枚の参照画像から鮮明な 1K・2K 画像を生成する統合的な画像生成・編集モデルです。
1K(約2MP)と 2K(約4MP)で生成し、既定は 2K です。価格は要求した解像度に応じた段階制です。
Pro は鮮明な 1K/2K 出力・複数参照ワークフロー・精密編集・強化された多言語テキスト描画に最適化されたフラッグシップの生成・編集ティアで、Lite はそれらの一部を速度と低コストに振り向けたモデルです。
1回の生成で最大10枚まで、単一・複数参照の合成と編集に使用できます。
Apiframe から単一の API・非同期ジョブ・Webhook で利用できます。Apiframe は BytePlus ModelArk を優先し、Replicate をフォールバックとして利用します。
解決しませんでしたか?
APIキーを取得すれば数分で Seedream 5.0 Pro を統合できます — 従量課金。
ご質問はありますか? Discordに参加 または 営業に問い合わせる。