Nami Wan 2.2 I2V Spicy B

nami-wan2.2-i2v-spicy-b

WAN 2.2 Spicy は画像を無制限の高品質動画に変換し、スムーズなアニメーションでスケーラブルなコンテンツ生成に最適化されています。すぐに使える REST 推論 API、最高のパフォーマンス、コールドスタートなし、手頃な価格。

サンプル

Nami Wan 2.2 I2V Spicy B example 1

パラメータ

名前既定制約説明
image *画像image_upload≤ 500 chars出力を生成するための画像。
prompt *プロンプトtextarea≤ 5000 chars生成のためのポジティブプロンプト。
resolution解像度select480p480p | 720p生成されたメディアの解像度。
duration長さselect55 | 8生成されたメディアの長さ(秒)。

API

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

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/nami-wan2.2-i2v-spicy-b" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "image": "https://kaito-1328216764.cos.ap-tokyo.myqcloud.com//uploads/images/2026-02-26/cf012094559a.png",
    "prompt": "Create a smooth and captivating video animation of the sunset transitioning to twilight over the mountains, with vibrant colors and gentle cloud movements.",
    "resolution": "720p",
    "duration": 8
  }
}'

# 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/nami-wan2.2-i2v-spicy-b",
    headers=HEADERS,
    json={
        "input": {
            "image": "https://kaito-1328216764.cos.ap-tokyo.myqcloud.com//uploads/images/2026-02-26/cf012094559a.png",
            "prompt": "Create a smooth and captivating video animation of the sunset transitioning to twilight over the mountains, with vibrant colors and gentle cloud movements.",
            "resolution": "720p",
            "duration": 8
        }
    },
)
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/nami-wan2.2-i2v-spicy-b", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "image": "https://kaito-1328216764.cos.ap-tokyo.myqcloud.com//uploads/images/2026-02-26/cf012094559a.png",
      "prompt": "Create a smooth and captivating video animation of the sunset transitioning to twilight over the mountains, with vibrant colors and gentle cloud movements.",
      "resolution": "720p",
      "duration": 8
    }
  }),
});
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);

ドキュメント

WAN 2.2 Spicy

画像を高品質な動画に変換する究極のソリューション

WAN 2.2 Spicy は、画像を高品質な動画に変換するために設計されたAIモデルで、スムーズなアニメーションを提供し、大規模なコンテンツ生成に最適化されています。即時使用可能なREST推論APIを提供し、最高のパフォーマンスを保証し、コールドスタートなしで手頃な価格を実現しています。

🚀 主な特徴

  • 無制限の動画生成:画像から高品質な動画を制限なく生成。
  • スムーズなアニメーション:最適化されたアニメーションでシームレスな動画フローを実現。
  • コールドスタートなし:待ち時間なしで即時生成。
  • スケーラブルなコンテンツ生成:大規模なコンテンツ制作に最適。

🛠️ 技術仕様

パラメータ説明
モデルアーキテクチャWAN 2.2 Spicy
入力形式画像(文字列)
出力形式動画
解像度480p
長さデフォルト:5秒;オプション:5, 8秒
シード値デフォルト:-1(ランダム)

💰 価格

解像度料金
480p$0.04 / 秒

💡 最適な利用ケース

  • Eコマース:製品展示のための魅力的な動画を生成。
  • ソーシャルメディア:目を引く短編動画コンテンツを作成。
  • 映画制作:プレビューやコンセプト動画を迅速に生成。

🔗 関連モデル

  • WAN 2.6:公式初リリースバージョンで高性能を提供。
  • FLUX 2:高品質な動画生成のための別のオプション。

関連モデル

Wan 2.2 アニメート
Image to VideoWaveSpeed

Wan 2.2 アニメート

Wan 2.2 アニメートは、ドライビング動画から動きと表情を再現する統合キャラクターアニメーション&置換モデルです。1枚のキャラクター画像をフルパフォーマンスに変換し、出力を安定、リアル、アイデンティティ一貫性を保ちながら、体の動きと顔の表情をコピーします。最大120秒の720p動画を生成します。

$0.200 / 1 回
Vidu Q3 画像から動画へ
Image to VideoVidu

Vidu Q3 画像から動画へ

Vidu Q3 画像から動画へは、テキストプロンプトを高品質な動画に変換し、優れた視覚的忠実度と多様なモーションを実現します。すぐに使える REST 推論 API、最高のパフォーマンス、コールドスタートなし、手頃な価格。

$0.750 / 1 回
Pixverse V6 Reference to Video
Image to VideoPixVerse

Pixverse V6 Reference to Video

PixVerse V6リファレンス動画生成(Fusion)は、1〜3枚の参考画像(主体、キャラクター、背景)をサポートし、テキストプロンプトとの組み合わせで優れたキャラクターの一貫性と物語の連続性を実現、ネイティブ同期オーディオも同時生成します。エンタープライズ向けREST推論API、コールドスタートなし、高コンカレンシーで、アニメ制作、ゲームアート、マルチカット動画開発に最適です。

$0.180 / 1 回
Pixverse V6 Image to Video
Image to VideoPixVerse

Pixverse V6 Image to Video

PixVerse V6 Image-to-Video(単一画像生成と首尾フレーム生成を全面統合)は、1枚または2枚の画像から、映画並みの超高画質、リアルな物理インタラクション、そして極めて高い一貫性を備えた動的クリップを生成します。高度な絵コンテ制御、シネマティックループ、商用プロモーションに最適です。エンタープライズ向けREST推論API、高コンカレンシー、コールドスタートなし、手頃な価格設定を提供します。

$0.180 / 1 回
Pixverse V5 T2V
Image to VideoPixVerse

Pixverse V5 T2V

PixVerse V5 テキストから動画生成は、プロンプトに基づいて滑らかで自然な5秒動画を数秒で生成します。720p出力対応(5秒ごとに$0.20)。すぐに使えるREST推論API、最高のパフォーマンス、コールドスタートなし、手頃な価格。

$0.230 / 1 回
Pixverse V5 I2V
Image to VideoPixVerse

Pixverse V5 I2V

PixVerse V5は画像を短く滑らかで自然な動画に変換します。5秒動画:$0.15(360p/540p)、$0.20(720p)、$0.40(1080p)。すぐに使えるREST推論APIを提供し、最高のパフォーマンス、コールドスタートなし、手頃な価格。

$0.230 / 1 回
Pixverse V5.6 テキストから動画生成
Image to VideoPixVerse

Pixverse V5.6 テキストから動画生成

PixVerse V5.6 は、プロンプトを数秒でリアルな動画に変換します。滑らかな動きと自然なディテールを備え、ストーリー、広告、ソーシャルクリップに最適です。すぐに使える REST 推論 API、最高のパフォーマンス、コールドスタートなし、手頃な価格。

$0.180 / 1 回
Pixverse V5.6 画像から動画へ
Image to VideoPixVerse

Pixverse V5.6 画像から動画へ

PixVerse V5.6 画像から動画へは、1枚の画像を滑らかな動き、鮮明なディテール、強い主体の忠実性を備えた映画のようなクリップに変換します。ロゴアニメーション、キャラクターの動き、SNS投稿に最適です。すぐに使えるREST推論API、最高のパフォーマンス、コールドスタートなし、手頃な価格。

$0.180 / 1 回