Seedream 5.0 Pro icon

Seedream 5.0 Pro API

ByteDance のフラッグシップ画像・編集モデル Seedream 5.0 Pro(2026年中頃)。テキストや最大10枚の参照画像から、高度な推論と精密編集で鮮明な 1K・2K 画像を生成します。

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

model: "seedream-5-pro"

Seedream 5.0 Pro の特長

鮮明な 1K / 2K 出力

1K(約2MP)と 2K(約4MP)で鮮明な画像を生成します。価格は解像度に応じた段階制で、必要なディテールにだけ支払えます。

最大10枚の参照画像

単一・複数参照の生成に最大10枚の参照画像を使用でき、商品配置・キャラクターの一貫性・シーン合成に強みを発揮します。

高度なプロンプト推論

深い思考プロセスでデータ・概念・長文を、インフォグラフィック・ポスター・UI モックアップ・図表などの構造化されたレイアウトに1回で変換します。

精密編集とレイヤー分離

領域を指定した精密な編集に対応し、テキスト・被写体・背景などの編集可能な要素に画像を分離。全体を再生成せずに一部だけを変更できます。

ネイティブな多言語テキスト

右横書きレイアウトやアクセント付き文字を含む14言語で正確なテキストを描画し、従来世代から大きく進化しています。

フォトリアルと素材再現

物理的な光・素材の質感・肌のテクスチャ・複数人物の合成を強化し、説得力のある商用品質の結果を実現します。

Seedream 5.0 Pro で作成

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

概要

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

機能

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

クイックスタート

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 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 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に関するよくある質問をまとめました。

Seedream 5.0 Pro とは何ですか?

ByteDance のフラッグシップ Seedream 5.0 Pro で、テキストや最大10枚の参照画像から鮮明な 1K・2K 画像を生成する統合的な画像生成・編集モデルです。

対応解像度は?

1K(約2MP)と 2K(約4MP)で生成し、既定は 2K です。価格は要求した解像度に応じた段階制です。

Seedream 5 Lite との違いは?

Pro は鮮明な 1K/2K 出力・複数参照ワークフロー・精密編集・強化された多言語テキスト描画に最適化されたフラッグシップの生成・編集ティアで、Lite はそれらの一部を速度と低コストに振り向けたモデルです。

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

1回の生成で最大10枚まで、単一・複数参照の合成と編集に使用できます。

どこで利用できますか?

Apiframe から単一の API・非同期ジョブ・Webhook で利用できます。Apiframe は BytePlus ModelArk を優先し、Replicate をフォールバックとして利用します。

解決しませんでしたか?

Seedream 5.0 Pro API で開発を始めよう

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

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

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