Wan 2.6 Spicy Image to Video: AI Image-to-Video Generator

Animate images with Wan 2.6 Spicy. Bold, high-contrast motion, optional audio-guided generation, single or multi-shot framing. Try free — pay per generation.

📝

Overview

About this model

Wan 2.6 Spicy Image to Video turns a single still image into a bold, high-motion video clip with dramatic camera movement and vivid, high-contrast color grading. It supports optional audio-guided generation, single-shot or multi-shot framing, automatic prompt expansion for richer motion detail, and output at 720p or 1080p in 5, 10, or 15-second clips. The Spicy variant is tuned for punchier, more dynamic output than the standard Wan 2.6 image-to-video endpoint while keeping the same request shape, so switching between the two is a one-line change.

1Social content: Turn product or lifestyle photos into eye-catching, high-motion short clips for Reels and TikTok.
2Music visuals: Pair an audio track with a still image to generate a synced, high-energy video teaser.
3Ad creative: Generate bold, high-contrast video variants from a single hero image for A/B testing campaigns.
4Storyboarding: Preview multi-shot sequences from a single reference frame before committing to full production.
💰

Pricing & Value

Cost analysis

muapiapp$1.00 – $4.50 per generation

Priced by resolution and duration: $1.00 (5s/720p) up to $4.50 (15s/1080p). Pay per generation, no subscription.

Fal.aiNot available

No Spicy-tier Wan 2.6 image-to-video endpoint listed.

ReplicateNot available

No Spicy-tier Wan 2.6 image-to-video endpoint listed.

* Competitor pricing is estimated based on similar model architectures and usage tiers.

⚙️

Technical Details

Configuration schema

Image URLstring

Source image to animate into video

Default Valueundefined
Promptstring

Positive text prompt describing the desired motion and scene

Default Valueundefined
Negative Promptstring

What not to generate

Default Valueundefined
Audio URLstring

Optional audio file to guide generation

Default Valueundefined
ResolutionEnum (2 options)

Output video resolution

Default Value720p
Duration (seconds)Enum (3 options)

Video duration in seconds

Default Value5
Shot TypeEnum (2 options)

Single continuous shot or multi-shot sequence

Default Valuesingle
Enable Prompt Expansionboolean

Automatically expand and optimize the prompt

Default Valuefalse
Seedint

Random seed for reproducibility (-1 for random)

Default Value-1
📖

Implementation Guide

Developer documentation

How to Use Wan 2.6 Spicy Image to Video

  1. Upload a source image: provide a high-resolution still via image_url — this is the only required field.

  2. Add a prompt (optional): describe the motion, camera movement, or scene you want; use negative_prompt to exclude unwanted elements.

  3. Tune the output: choose resolution (720p or 1080p), duration (5, 10, or 15 seconds), and shot_type (single for one continuous shot, multi for a multi-shot sequence).

  4. Optional extras: pass an audio_url to guide the generation with sound, set enable_prompt_expansion to let the model automatically enrich your prompt, or fix a seed for reproducible results.

  5. Submit and poll: call the endpoint below, then poll GET /api/v1/predictions/{request_id}/result (or use a webhook_url) until status is completed.

curl -X POST https://api.muapi.ai/api/v1/wan2.6-image-to-video-spicy \
  -H "Authorization: Bearer $MUAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "image_url": "https://example.com/photo.jpg",
    "prompt": "dramatic slow zoom with wind-blown motion",
    "resolution": "1080p",
    "duration": 5,
    "shot_type": "single"
  }'

Common Questions

Frequently asked

What does the "Spicy" variant change compared to standard Wan 2.6 Image to Video?

Spicy is tuned for bolder, higher-contrast, more dramatic motion than the standard endpoint. The request and response shapes are similar, but Spicy adds `shot_type`, `enable_prompt_expansion`, and `seed` controls not present on the standard endpoint.

Is the prompt required?

No — only `image_url` is required. `prompt` and `negative_prompt` are optional and let you steer the motion and scene more precisely.

What resolutions and durations are supported?

720p and 1080p resolutions, with 5, 10, or 15-second clip durations. Pricing scales with both resolution and duration.

Can I guide the generation with audio?

Yes — pass an `audio_url` and the model will use it to help drive the pacing and motion of the generated video.

What is `shot_type` used for?

`shot_type` controls framing: `single` produces one continuous shot, while `multi` generates a multi-shot sequence from the same source image.

How do I get consistent, reproducible output?

Set a fixed integer `seed`. Leaving it at the default `-1` produces a different random result on every call.