ByteDance Seedream V4 Edit

doubao/seedream-4.0/image-to-image

Seedream V4 Edit は ByteDance の最先端画像編集モデルで、Nano Banana を上回る忠実度と編集品質を誇ります。すぐに使える REST 推論 API、最高のパフォーマンス、コールドスタートなし、手頃な価格。

サンプル

ByteDance Seedream V4 Edit example 1

パラメータ

名前既定制約説明
images *画像image_uploadimage/* · 1–10 items編集する画像。最大 10 枚の参照画像をアップロードできます。
prompt *プロンプトtextarea≤ 5000 chars生成のためのポジティブプロンプト。
sizeサイズtext≤ 500 chars生成されるメディアのサイズで、画像は最大 4K 解像度をサポートします。既存の画像のサイズに合わせる必要がある場合は、明示的に寸法を指定する必要があります。画像に合わせた自動リサイズはサポートされていません。

出力フィールド

フィールド説明
imagesarray<string>Generated image URLs

API

統一 REST API でこのモデルを呼び出せます。API Keys ページでキーを取得してください。

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-4.0/image-to-image" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "images": [
      "https://assets-public.namifusion.com/uploads/images/2026-03-05/2ba652e30b82.png"
    ],
    "prompt": "Transform the image into a surrealistic artwork with a dream-like atmosphere, incorporating elements of fantasy such as floating islands and mythical creatures.",
    "size": "3840x2160"
  }
}'

# 2) Poll until status is "completed", then read the output URLs
curl "https://www.namifusion.com/api/v1/marketplace/run/tasks/TASK_UUID" \
  -H "Authorization: Bearer YOUR_API_KEY"
Python
import time, requests

API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# 1) Submit
resp = requests.post(
    "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-4.0/image-to-image",
    headers=HEADERS,
    json={
        "input": {
            "images": [
                "https://assets-public.namifusion.com/uploads/images/2026-03-05/2ba652e30b82.png"
            ],
            "prompt": "Transform the image into a surrealistic artwork with a dream-like atmosphere, incorporating elements of fantasy such as floating islands and mythical creatures.",
            "size": "3840x2160"
        }
    },
)
resp.raise_for_status()  # 401/402/429/5xx stop here instead of polling a bad task
task = resp.json()

# 2) Poll until a terminal state (completed / failed / cancelled).
#    This model is allowed up to 300s server-side.
deadline = time.time() + 360
while task.get("status") not in ("completed", "failed", "cancelled"):
    if time.time() > deadline:
        raise TimeoutError(f"still {task.get('status')} — keep the task_uuid and poll later")
    time.sleep(3)
    poll = requests.get(f"https://www.namifusion.com/api/v1/marketplace/run/tasks/{task['task_uuid']}", headers=HEADERS)
    poll.raise_for_status()
    task = poll.json()

print(task["status"], task.get("output"))
JavaScript
const API_KEY = "YOUR_API_KEY";
const HEADERS = { Authorization: `Bearer ${API_KEY}` };

// 1) Submit
const resp = await fetch("https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-4.0/image-to-image", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "images": [
        "https://assets-public.namifusion.com/uploads/images/2026-03-05/2ba652e30b82.png"
      ],
      "prompt": "Transform the image into a surrealistic artwork with a dream-like atmosphere, incorporating elements of fantasy such as floating islands and mythical creatures.",
      "size": "3840x2160"
    }
  }),
});
if (!resp.ok) throw new Error(`submit failed: ${resp.status} ${await resp.text()}`);
let task = await resp.json();

// 2) Poll until a terminal state (completed / failed / cancelled).
//    This model is allowed up to 300s server-side.
const deadline = Date.now() + 360 * 1000;
while (!["completed", "failed", "cancelled"].includes(task.status)) {
  if (Date.now() > deadline) throw new Error(`still ${task.status} — keep the task_uuid and poll later`);
  await new Promise((r) => setTimeout(r, 3000));
  const poll = await fetch(`https://www.namifusion.com/api/v1/marketplace/run/tasks/${task.task_uuid}`, { headers: HEADERS });
  if (!poll.ok) throw new Error(`poll failed: ${poll.status}`);
  task = await poll.json();
}

console.log(task.status, task.output);

ドキュメント

ByteDance Seedream V4 Edit

最先端の画像編集モデル

ByteDance Seedream V4 Edit は、正確で高品質な画像編集のために設計された最先端の画像から画像へのモデルです。保真度と編集品質において競合の Nano Banana を上回り、即時使用可能な REST 推論 API を提供し、コールドスタートなしで競争力のある価格設定を実現しています。

🚀 主な特徴

  • 高い忠実度の編集:人物や製品の信頼性のある肌の色調、布地の詳細、細かいエッジを維持。
  • 生産に適した一貫性:一貫したカメラアングルとブランドの色調整で、複数のバリエーションを迅速に生成。
  • 構造化されたプロンプトサポート:明確な目標に最適化され、正確でスケーラブルな編集を保証。
  • 多用途な画像編集:服装の交換、ヘアメイクの調整、製品の再着色、室内仕上げの置換を、元の構図を維持しながら実現。

🛠️ 技術仕様

仕様詳細
モデルアーキテクチャ画像から画像へ
入力形式画像の配列(最大10枚)
出力形式編集された画像
解像度最大8192x8192(4K対応)
サンプルプロンプト"服装を{OUTFIT_DESC}に変更し、ポーズを維持"

💰 価格設定

解像度画像あたりの価格
任意$0.03

💡 最適な使用ケース

  • ポートレート&インフルエンサーのワークフロー:服装、メイク、ヘアスタイルの変更に最適で、ブランドシリーズやキャンペーンバリエーションの作成に。
  • Eコマース&製品チーム:色調整、素材の交換、パッケージの更新に最適。
  • インテリアデザイン&建築ビジュアライゼーション:壁や床の仕上げの置換、光を考慮したセットドレッシングに。
  • マーケティング&成長:一貫したブランドカラーとカメラ設定で迅速なA/Bテストを可能にします。

🔗 関連モデル

  • ByteDance Seedream V4:異なる編集機能を持つ他のバージョンを探索してください。

関連モデル

xAI Grok Imagine Image v2.0 画像編集
Image to ImageX Ai

xAI Grok Imagine Image v2.0 画像編集

xAI Grok Imagine Image V2.0 Edit は、テキストによるプロンプトを使って入力画像を編集できるモデルです。解像度と品質を設定でき、精密な画像編集、ビジュアル調整、クリエイティブなバリエーション、SNS コンテンツ、マーケティング素材、制作ワークフローに適しています。すぐに使える REST 推論 API を提供し、高性能・コールドスタートなし・手頃な価格で利用できます。

$0.090 / 1 回
Qwen Image 3.0 Pro Edit|高速画像編集
Image to ImageQwen Image 3.0 Pro

Qwen Image 3.0 Pro Edit|高速画像編集

Qwen Image 3.0 Pro Edit は、優れた画質と高度な指示理解を備えたプロ向けの画像編集モデルです。最大 2k に対応。すぐに使える REST inference API を提供し、高性能、コールドスタートなし、手頃な価格で利用できます。

$0.080 / 1 回
Image to Image
Image to ImageNamiFusion

ヘッドスワップ(画像)

Swap the head in a photo with the head from a reference image. Upload the target photo first, then the head reference.

$0.220 / 1 回
Nami Qwen I2I Spicy
Image to Image

Nami Qwen I2I Spicy

自然言語の指示で参照画像を編集し、変更を指定していない部分をできるだけ保持します。

$0.040 / 1 回
Nano Banana 画像編集
Image to ImageGoogle

Nano Banana 画像編集

高速・低価格な編集。 マスキング不要で、直感的なオブジェクト置換やスタイル変換が可能。

$0.040 / 1 回
Nano Banana Pro 画像編集
Image to ImageGoogle

Nano Banana Pro 画像編集

4K セマンティック編集。自然言語で画像を修正。文脈認識と画像内多言語テキスト編集に対応。

$0.140 / 1 回
Nano Banana 2 画像編集
Image to ImageGoogle

Nano Banana 2 画像編集

4K セマンティック編集。自然言語で画像を修正。文脈認識と画像内多言語テキスト編集に対応。

$0.070 / 1 回
Seedream V5.0 Pro Edit 画像編集・生成 API
Image to ImageDoubao

Seedream V5.0 Pro Edit 画像編集・生成 API

ByteDance の Seedream V5.0 Pro Edit は、単一画像または複数の参照画像をもとに画像の編集・生成を行えます。最大 10 枚の参照画像に対応し、アスペクト比の選択と 1K / 2K の出力階層をサポートしています。すぐに使える REST 推論 API で、高性能、コールドスタートなし、手頃な価格です。

$0.050 / 1 回