Skip to main content

Try WAN 2.6 - Image to Video in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: wan-v2-6-image-to-video WAN 2.6 image-to-video is a Large Vision Model designed for animating static images into short videos. It excels in preserving subject identity, facial features, proportions, textures, and overall composition from the input image, producing outputs up to 15 seconds at 1080p resolution with native audio and lip-sync. Some other noteworthy features of WAN 2.6 image-to-video include multi-shot sequence generation with consistent details across shots and support for reference videos to guide appearance, style, and voice.
MetricValue
Parameter CountUnknown
Mixture of ExpertsUnknown
Context LengthUnknown
MultilingualNo
Quantized*Unknown
*Quantization is specific to the inference provider and the model may be offered with different quantization levels by other providers.

Example request

Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
This blocks until the video is ready (typically 5-15 minutes). Prefer Async or Async with SSE for anything beyond quick experimentation.See the video generation reference for more details.
curl -X POST https://hub.oxen.ai/api/ai/videos/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OXEN_API_KEY" \
  -d '{
  "model": "wan-v2-6-image-to-video",
  "prompt": "Zoom into the ox, while it is walking forward on the road, in cinematic fashion",
  "input_image": "https://hub.oxen.ai/api/repos/ox/Oxen-AI-Assets/file/main/images/ox_zoom_out_1926_1076.png"
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/wan-v2-6-image-to-video

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstring"Zoom into the ox, while it is walking forward on the road, in cinematic fashion"Text description of what you want to generate, or the instruction on how to edit the given image.
input_imagestring"https://hub.oxen.ai/api/repos/ox/Oxen-AI-Assets/file/main/images/ox_zoom_out_1926_1076.png"Image to use as reference. Must be jpeg, png, gif, or webp. Format: uri.

Optional parameters

FieldTypeDefaultDescription
durationinteger5Video duration in seconds One of: 5, 10, 15.
audio_urlstringURL of the audio to use as the background music. If the audio duration exceeds the duration value, the audio is truncated to the first N seconds, and the rest is discarded. Format: uri.