Use this file to discover all available pages before exploring further.
Try WAN 2.7 - Edit Video in the Workbench
Run this model interactively, tune parameters, and compare outputs.
Model ID:wan-v2-7-edit-videoWAN 2.7 edit-video transforms existing videos using instruction-based editing, reference image-based editing, and video style transfer. It supports up to 1080p output, input videos of 2-10 seconds, multiple aspect ratios, and configurable audio handling (auto-regenerate or preserve original).
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.
Sync
Async
Async with SSE
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.
Minimal
All parameters
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-7-edit-video", "prompt": "Transform the entire scene into a beautiful watercolor painting style. Soft brushstrokes, flowing paint washes, visible paper texture.", "input_video": "https://hub.oxen.ai/api/repos/ox/Oxen-AI-Assets/file/main/videos/waterfall.mp4"}'
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-7-edit-video", "prompt": "Transform the entire scene into a beautiful watercolor painting style. Soft brushstrokes, flowing paint washes, visible paper texture.", "input_video": "https://hub.oxen.ai/api/repos/ox/Oxen-AI-Assets/file/main/videos/waterfall.mp4", "resolution": "1080p", "duration": 0, "audio_setting": "auto"}'
Output video resolution tier. One of: 720p, 1080p.
duration
integer
0
Output video duration in seconds. Default 0 means match input video duration. When set (2-10), truncates from the start. One of: 0, 2, 3, 4, 5, 6, 7, 8, 9, 10.
reference_image_url
string
—
Reference image URL for reference-based editing. Format: uri.
audio_setting
string
"auto"
Audio handling. ‘auto’: model decides whether to regenerate audio. ‘origin’: preserve original audio from input video. One of: auto, origin.
seed
integer
—
Random seed for reproducibility (0-2147483647).
⌘I
Assistant
Responses are generated using AI and may contain mistakes.