PixVerse V6 Extend continues and enhances existing video content by analyzing the ending segment and generating new frames forward. Supports 360p to 1080p resolutions, 1-15 second extension duration, optional audio generation, and multiple styles. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle
$0.025per run·~40 / $1
Radiating golden light and flames. Excessively natural. The entire scene is filled with golden light.
PixVerse V6 Video Extend continues an existing video clip with new AI-generated footage, seamlessly picking up where the original ends. Describe where the scene should go next — the model generates a natural, motion-consistent extension with optional style control, negative prompting, and synchronized audio.
Seamless video continuation Extends your existing clip with new AI-generated footage that matches the original motion, style, and scene context.
Prompt-guided extension Describe what should happen next — direct the action, camera movement, and atmosphere of the extended segment.
Style control Apply a specific visual style to the extension for creative or consistent branded output.
Optional audio generation Enable generate_audio_switch to produce synchronized ambient sound alongside the extended video.
Negative prompt support Specify what to avoid in the extension for more precise control over the output.
Multiple resolution tiers Generate extensions at 360p, 540p, 720p, or 1080p to match your delivery requirements.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of what should happen in the extended segment. |
| video | Yes | Source video to extend (URL or file upload). |
| resolution | No | Output resolution: 360p, 540p, 720p (default), or 1080p. |
| duration | No | Length of the extension in seconds. Default: 5. |
| generate_audio_switch | No | Whether to generate synchronized audio for the video. Default: off. |
| negative_prompt | No | Elements to exclude from the extended footage. |
| style | No | Visual style to apply to the extension. |
| 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/extend 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 Extend below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v6/extend" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"video": "https://example.com/your-input.mp4",
"resolution": "720p",
"duration": 5,
"generate_audio_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/extend", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"video": "https://example.com/your-input.mp4",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"pixverse/pixverse-v6/extend",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"video": "https://example.com/your-input.mp4",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false
}
)
print(output["outputs"][0]) # → URL of the generated outputPixverse v6 Extend is a Pixverse model for video extension, exposed as a REST API on WaveSpeedAI. PixVerse V6 Extend continues and enhances existing video content by analyzing the ending segment and generating new frames forward. Supports 360p to 1080p resolutions, 1-15 second extension duration, optional audio generation, and multiple styles. 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-extend.
Pixverse v6 Extend 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`, `video`, `resolution`, `duration`, `generate_audio_switch`. 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-extend.
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.