PixVerse V5.5 transforms text prompts into realistic videos with smooth motion and natural detail in seconds—ideal for stories, ads, and social clips. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
ว่าง
$0.45ต่อครั้ง·~22 / $10
An anime scene on a city rooftop at sunset. Start with a wide shot of a pastel orange sky and distant skyline, wind gently moving laundry lines and antenna cables. Cut to a medium shot of a teenage girl in a school uniform standing at the edge, hair and ribbon blowing in the wind, anime style linework and shading. She turns toward the camera and says softly, "I'll change everything, starting today." Soft piano and cicadas in the background, Japanese-anime voice acting, subtle camera shake and zoom for emotional emphasis.
A fast-paced cyberpunk chase at night. Begin with a wide aerial shot of a neon-lit alley full of holographic signs and rain, a runner in a glowing jacket dashing through the crowd. Cut to a low tracking shot at ground level, water splashing in slow motion as they jump over a puddle, neon reflections everywhere. Final shot: dynamic side view as they leap over a gap between rooftops, the camera whipping past to reveal giant holographic billboards behind them. Style: hyper-realistic cyberpunk, strong magenta and teal lights. Sound: heavy electronic beat, rain, distant sirens, their breath and footsteps clearly audible, no dialogue.
A modern coffee commercial. First shot: extreme close-up of hot espresso pouring into a glass cup in slow motion, rich crema forming, warm morning light on a wooden table. Second shot: medium shot of a young professional picking up the cup at a kitchen counter, smiling and taking a sip, steam rising. Final shot: overhead view of the cup on the table next to a laptop and notebook, sunlight making a soft glow around the cup. Style: clean, realistic, high-end commercial look. Sound: gentle acoustic guitar, subtle coffee pouring and cup clink, soft female voiceover saying one short line: "Start today with something warm."
PixVerse v5.5 Text-to-Video turns a written scene description into a short animated clip. You control resolution (360p–1080p), duration (5s / 8s / 10s) and resolution_ratio (16:9,4:3,1:1,3:4,9:16), while the model handles camera motion, lighting and transitions for you.
prompt* (string) : Up to 2048 characters describing the scene, pacing and camera moves.
resolution : One of 360p, 540p, 720p, 1080p.
duration : 5, 8 or 10 seconds. (10s is not available for 1080p)
resolution_ratio : 16:9, 4:3, 1:1, 3:4, 9:16.
thinking_type :
Enabled: Turn on system-level reasoning/optimisation of your prompt.
Disabled: Use your prompt as-is.
Auto (default): Let the system decide whether to enable it.
negative_prompt (optional) : Terms you don’t want to see in the video (e.g. watermark, text, logo, glitch).
seed : Integer for reproducibility. Use a fixed value to re-run the same idea; change it to get new variations.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5/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 v5.5 Text To Video below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5/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",
"resolution": "540p",
"duration": 5,
"resolution_ratio": "1:1",
"generate_audio_switch": false,
"generate_multi_clip_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-v5.5/text-to-video", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"resolution": "540p",
"duration": 5,
"resolution_ratio": "1:1",
"generate_audio_switch": false,
"generate_multi_clip_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-v5.5/text-to-video",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"resolution": "540p",
"duration": 5,
"resolution_ratio": "1:1",
"generate_audio_switch": false,
"generate_multi_clip_switch": false,
"thinking_type": "auto"
}
)
print(output["outputs"][0]) # → URL of the generated outputPixverse v5.5 Text To Video is a Pixverse model for video generation, exposed as a REST API on WaveSpeedAI. PixVerse V5.5 transforms text prompts into realistic videos with smooth motion and natural detail in seconds—ideal for stories, ads, and social clips. 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-v5.5-text-to-video.
Pixverse v5.5 Text To Video starts at $0.45 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`, `resolution`, `duration`, `generate_audio_switch`, `generate_multi_clip_switch`, `resolution_ratio`. 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-v5.5-text-to-video.
Average end-to-end generation time on WaveSpeedAI is around 35 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
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.