Nami Wan 2.2 Extend Spicy A
nami-wan2.2-extend-spicy-a
Extend short clips into unlimited, high-quality longer videos with smooth animation using WAN 2.2 Spicy. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Examples
Parameters
| Name | Type | Default | Constraints | Description |
|---|---|---|---|---|
| video *Video | video_upload | — | — | The video for generating the output. |
| prompt *Prompt | textarea | — | ≤ 5000 chars | The positive prompt for the generation. |
| resolution *Resolution | select | 480p | 480p | 720p | The resolution of the generated media. |
| durationDuration | select | 5 | 5 | 8 | The duration of the generated media in seconds. |
| seedSeed | number | -1 | — | The random seed to use for the generation. -1 means a random seed will be used. |
API
Call this model through one unified REST API. Get a key on the API Keys page.
cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/nami-wan2.2-extend-spicy-a" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"video": "https://example.com/input.mp4",
"prompt": "A cinematic portrait, dramatic rim light, shallow depth of field",
"resolution": "480p",
"duration": 5,
"seed": -1
}
}'
# 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-extend-spicy-a",
headers=HEADERS,
json={
"input": {
"video": "https://example.com/input.mp4",
"prompt": "A cinematic portrait, dramatic rim light, shallow depth of field",
"resolution": "480p",
"duration": 5,
"seed": -1
}
},
)
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-extend-spicy-a", {
method: "POST",
headers: { ...HEADERS, "Content-Type": "application/json" },
body: JSON.stringify({
"input": {
"video": "https://example.com/input.mp4",
"prompt": "A cinematic portrait, dramatic rim light, shallow depth of field",
"resolution": "480p",
"duration": 5,
"seed": -1
}
}),
});
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);Documentation
WAN 2.2 Spicy Video Extend
The ultimate solution for extending short clips into unlimited high-quality videos
With WAN 2.2 Spicy, extend short clips into unlimited, high-quality longer videos with smooth animation. This model offers a ready-to-use REST inference API, ensuring the best performance with no cold starts and affordable pricing.
🚀 Key Features
- No Cold Start: Immediate response with no waiting time.
- High-Quality Output: Generates long videos with high resolution and smooth animation.
- Affordable Pricing: Competitive pricing suitable for various budgets.
- Flexible Integration: Supports multiple integration options including REST API and desktop applications.
🛠️ Technical Specifications
| Parameter | Description |
|---|---|
| Model Architecture | WAN 2.2 Spicy |
| Input Format | Video (string) |
| Output Format | Video |
| Resolution | Default: 480p; Options: 480p, 720p |
| Duration | Default: 5 seconds; Options: 5, 8 seconds |
| Seed | Default: -1 (random) |
💰 Pricing
| Resolution | Price (USD/sec) |
|---|---|
| 480p | 0.03 |
| 720p | 0.06 |
💡 Best Use Cases
- E-commerce: Create product showcase videos to boost sales conversions.
- Social Media: Generate engaging short videos to increase user engagement.
- Film Production: Extend short film clips to save production time and costs.
🔗 Related Models
- WAN 2.6: Official first launch, offering higher performance and more features.
Related models
AI Video Watermark Remover
Remove watermarks, logos, captions and text from videos while preserving quality; supports many formats and 10-minute files. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Topaz Astra 2 Video Upscale
Enhance and upscale videos with Topaz Astra 2. Upload a source video, choose the target resolution, and tune creativity, sharpness, realism, compression, encoding, audio handling, and output format.
VT Lip Sync
VT Lip Sync synchronizes mouth movements for a translated video by using the translated target video, translated audio, translated subtitle timing, and the original source video with its original subtitle timing.
Nami Wan 2.2 Extend Spicy B
Extend short clips into unlimited, high-quality longer videos with smooth animation using WAN 2.2 Spicy. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Kling Omni Video O3
Kling Omni Video O3 Reference-to-Video generates creative videos using character, prop, or scene references from multiple viewpoints. Extracts subject features and creates new video content while maintaining identity consistency across frames. Supports audio generation. Ready-to-use REST API, best performance, no cold starts, affordable pricing.
Kling Omni Video O3
Kling Omni Video O3 Reference-to-Video generates creative videos using character, prop, or scene references from multiple viewpoints. Extracts subject features and creates new video content while maintaining identity consistency across frames. Supports audio generation. Ready-to-use REST API, best performance, no cold starts, affordable pricing.
Kling Omni Video O1 Reference-to-Video
Kling Omni Video O1 Reference-to-Video generates creative videos using character, prop, or scene references from multiple viewpoints. Extracts subject features and creates new video content while maintaining identity consistency across frames. Ready-to-use REST API, best performance, no cold starts, affordable pricing.
Kling Omni Video O1 Reference-to-Video
Kling Omni Video O1 Reference-to-Video generates creative videos using character, prop, or scene references from multiple viewpoints. Extracts subject features and creates new video content while maintaining identity consistency across frames. Ready-to-use REST API, best performance, no cold starts, affordable pricing.