Giảm 50% mô hình Vidu Q3 & Q3 Pro · Chỉ trên WaveSpeedAI | 20/5 – 2/6

Pixverse V6 Text to Video

pixverse /

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.

text-to-video
Input
Whether to generate audio for the video.

Idle

$0.1per run·~10 / $1

Next:

ExamplesView all

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.

Related Models

README

PixVerse V6 Text-to-Video

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.

Why Choose This?

  • 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.

Parameters

ParameterRequiredDescription
promptYesText description of the scene, motion, camera style, and atmosphere.
aspect_ratioNoOutput aspect ratio. Default: 16:9.
resolutionNoOutput resolution: 360p, 540p, 720p (default), or 1080p.
durationNoClip length in seconds. Default: 5.
generate_audio_switchNoWhether to generate synchronized audio for the video. Default: off.
thinking_typeNoReasoning mode for scene generation. Default: auto.

How to Use

  1. Write your prompt — describe the scene, characters, camera movement, lighting, and atmosphere. Use the Prompt Enhancer for better results.
  2. Select aspect ratio — choose the format that fits your target platform.
  3. Select resolution — 360p for drafts, 720p for standard output, 1080p for final production.
  4. Set duration — choose your desired clip length in seconds.
  5. Enable audio (optional) — check generate_audio_switch to generate synchronized sound alongside the video.
  6. Set thinking_type (optional) — use auto or adjust for complex scene descriptions.
  7. Submit — generate, preview, and download your video.

Pricing

ResolutionWithout AudioWith 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

Billing Rules

  • Billing is calculated per second of video generated
  • For 360p: $0.025/s without audio, $0.035/s with audio
  • For 540p: $0.035/s without audio, $0.045/s with audio
  • For 720p: $0.045/s without audio, $0.060/s with audio
  • For 1080p: $0.090/s without audio, $0.115/s with audio
  • For $1 you can run this model for approximately 40 seconds at 360p (no audio) or about 11 seconds at 1080p (no audio)

Best Use Cases

  • Cinematic Storytelling — Render rich, narrative-driven scenes from detailed text descriptions.
  • Social Media Content — Generate short-form video clips at the right resolution and aspect ratio for any platform.
  • Marketing & Advertising — Produce promotional video content quickly without a film crew.
  • Concept Visualization — Bring creative directions and moods to life for pitching and storyboarding.
  • Audio-Visual Content — Use audio generation for fully immersive ambient scenes.

Pro Tips

  • Be specific in your prompt — include camera angle, lighting quality, motion style, and subject behavior.
  • Use 360p or 540p to rapidly test and iterate on prompts before committing to a 1080p final render.
  • Enable audio for scenes with strong environmental elements like crowds, nature, or music performances.
  • Use the Prompt Enhancer to expand a simple concept into a richly detailed generation prompt.

Notes

  • Only prompt is required; all other parameters are optional.
  • Please follow PixVerse's content usage policies when crafting prompts.

Related Models

Accessibility:This website uses AI models provided by third parties.

Pixverse v6 Text To Video API — Quick start

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.

HTTP example
# 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].
Node.js example
// 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
Python example
# 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 output

Pixverse v6 Text To Video API — Frequently asked questions

What is the Pixverse v6 Text To Video API?

Pixverse 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.

How do I call the Pixverse v6 Text To Video API?

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.

How much does Pixverse v6 Text To Video cost per run?

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.

What inputs does Pixverse v6 Text To Video accept?

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.

How do I get started with the Pixverse v6 Text To Video API?

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.

Can I use Pixverse v6 Text To Video outputs commercially?

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.