PixVerse V6 generates high-quality videos from text prompts with flexible duration (1-15s), multiple resolutions up to 1080p, and optional audio generation. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Idle
$0.1per run·~10 / $1
A flamenco dancer stands completely still at center stage, spotlight on. For three seconds: nothing. Then her fingers begin — just the fingers — curling outward like smoke. The movement travels up her arms, into her shoulders, her chest expanding. By the time her foot stamps, the camera has already pulled back to reveal the full stage. One continuous breath becoming fury.
A macro lens slowly pushes through a single drop of water suspended mid-air, refracting an entire burning cityscape upside down within it. The drop trembles at 240fps, surface tension visibly pulsing. Background bokeh shifts from amber to deep violet as the camera breaches the droplet's edge.
PixVerse V6 is PixVerse's latest text-to-video model, delivering high-fidelity cinematic video from natural language prompts. With resolution options from 360p to 1080p, flexible aspect ratios, optional synchronized audio generation, and a thinking mode for complex scenes, it supports a wide range of creative and production workflows.
High-fidelity video generation Produces detailed, visually coherent video with accurate motion, lighting, and scene composition from text descriptions.
Four resolution tiers Generate from 360p up to 1080p — balance quality and cost based on your delivery needs.
Optional audio generation Enable generate_audio_switch to produce synchronized ambient sound and atmosphere alongside the video.
Thinking mode The thinking_type parameter lets the model apply extended reasoning for complex or nuanced scene descriptions.
Flexible aspect ratios Supports multiple orientations to fit social, cinematic, and broadcast formats.
Prompt Enhancer Built-in tool to automatically improve your scene descriptions for richer output.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the scene, motion, camera style, and atmosphere. |
| aspect_ratio | No | Output aspect ratio. Default: 16:9. |
| resolution | No | Output resolution: 360p, 540p, 720p (default), or 1080p. |
| duration | No | Clip length in seconds. Default: 5. |
| generate_audio_switch | No | Whether to generate synchronized audio for the video. Default: off. |
| thinking_type | No | Reasoning mode for scene generation. Default: auto. |
| 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/text-to-video 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 Text To Video below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v6/text-to-video" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false,
"thinking_type": "auto"
}'
# 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/text-to-video", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false,
"thinking_type": "auto"
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"pixverse/pixverse-v6/text-to-video",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"generate_audio_switch": false,
"thinking_type": "auto"
}
)
print(output["outputs"][0]) # → URL of the generated outputPixverse v6 Text To Video is a Pixverse model for video generation, exposed as a REST API on WaveSpeedAI. PixVerse V6 generates high-quality videos from text prompts with flexible duration (1-15s), multiple resolutions up to 1080p, and optional audio generation. Ready-to-use REST inference API, best performance, no cold starts, 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-text-to-video.
Pixverse v6 Text To Video starts at $0.10 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`, `aspect_ratio`, `resolution`, `duration`, `generate_audio_switch`, `thinking_type`. 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-text-to-video.
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.