PixVerse V6 Transition creates smooth AI-generated video transitions between a start image and an optional end image. Supports 360p to 1080p resolutions, 1-15 second duration, multiple aspect ratios, optional audio generation, and multi-clip mode. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle
$0.025per run·~40 / $1
Change the model's clothes in the picture for a smooth transition.
PixVerse V6 Transition generates a smooth, cinematic video transition between two images. Upload a start frame and an end frame, describe the transformation, and the model produces a natural, motion-consistent clip that flows seamlessly from one scene to the other — with optional style control, multi-clip generation, and synchronized audio.
Start-to-end frame transitions Generates a coherent video that naturally bridges two distinct images with smooth, believable motion.
Prompt-guided transformation Describe how the transition should unfold — wardrobe changes, environmental shifts, camera movements, and more.
Multi-clip generation Enable generate_multi_clip_switch to produce dynamic transitions with varied camera angles and cuts.
Style control Apply a specific visual style (e.g. cyberpunk, cinematic, anime) to the transition for creative output.
Optional audio generation Enable generate_audio_switch to produce synchronized ambient sound alongside the transition.
Thinking mode Prompt optimization mode for more nuanced or complex transition descriptions.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the desired transition and transformation. |
| image | Yes | Start frame image (URL or file upload). |
| end_image | No | End frame image to transition toward (URL or file upload). |
| aspect_ratio | No | Output aspect ratio. Default: 1:1. |
| resolution | No | Output resolution: 360p, 540p, 720p (default), or 1080p. |
| duration | No | Clip length in seconds. Default: 5. |
| thinking_type | No | Enable prompt optimization mode for complex transitions. |
| generate_audio_switch | No | Whether to generate synchronized audio for the video. Default: off. |
| generate_multi_clip_switch | No | Enable multi-clip generation with dynamic camera changes. Default: off. |
| style | No | Visual style to apply to the transition (e.g. cyberpunk, cinematic). |
| negative_prompt | No | Elements to exclude from the generated transition. |
| seed | No | Random seed for reproducible results. |
| Resolution | Without Audio | With Audio |
|---|---|---|
| 360p | $0.025/s | $0.035/s |
| 540p | $0.035/s | $0.045/s |
| 720p | $0.045/s | $0.060/s |
| 1080p | $0.090/s | $0.115/s |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/pixverse/pixverse-v6/transition with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Pixverse v6 Transition below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v6/transition" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false,
"generate_multi_clip_switch": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("pixverse/pixverse-v6/transition", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false,
"generate_multi_clip_switch": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"pixverse/pixverse-v6/transition",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false,
"generate_multi_clip_switch": false
}
)
print(output["outputs"][0]) # → URL of the generated outputPixverse v6 Transition is a Pixverse model for video generation from images, exposed as a REST API on WaveSpeedAI. PixVerse V6 Transition creates smooth AI-generated video transitions between a start image and an optional end image. Supports 360p to 1080p resolutions, 1-15 second duration, multiple aspect ratios, optional audio generation, and multi-clip mode. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/pixverse/pixverse-pixverse-v6-transition.
Pixverse v6 Transition starts at $0.025 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `image`, `aspect_ratio`, `resolution`, `duration`, `end_image`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/pixverse/pixverse-pixverse-v6-transition.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (Pixverse). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.