PixVerse V5.5 Image-to-Video turns a single image into cinematic clips with smooth motion, clean detail, and strong subject fidelity—ideal for logo stingers, character motion, and social posts. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Boşta
$0.45çalıştırma başına·~22 / $10
Use the uploaded anime battle mage illustration as the first frame. Keep the character's face, pose, outfit and background consistent. Start with a medium shot, then slowly dolly the camera in toward his outstretched hand as glowing blue energy builds up, swirling around his arm. In the last third of the clip, let the energy burst outward in a shockwave of light and particles, with slight camera shake and motion blur. Style: high-energy anime action, strong contrast, neon blue and purple highlights. Sound: rising synth and orchestral music, electric crackling, a powerful impact sound at the peak of the blast, no dialogue.
Use the uploaded sci-fi corridor image as the starting frame. Keep the corridor, lighting and astronaut exactly the same. Slowly dolly the camera forward down the hallway toward the astronaut, with very subtle handheld movement. As the camera moves, add drifting dust and light fog in the air, and let a few ceiling lights flicker nervously in the distance. Style: realistic cinematic sci-fi, soft depth of field, slight film grain. Sound: low rumbling engine ambience, quiet metallic echoes, and a rising deep synth drone, no dialogue.
Use the uploaded anime rooftop illustration as the first frame. Keep the girl's face, hairstyle, outfit and rooftop background consistent. Start with the original framing, then slowly push the camera in toward her face as her hair and blazer move lightly in the wind. She blinks once, then looks at the camera and says in a calm, determined anime voice: "I'll change my future, no matter what." Style: cinematic anime, soft gradients in the sky, slight camera shake for emotional impact. Sound: gentle evening city ambience, distant traffic and cicadas, soft piano in the background, synchronized Japanese-style female voice, no extra text on screen.
PixVerse v5.5 Image-to-Video animates a single image into a short cinematic clip. You provide a still frame plus a prompt; the model adds motion, camera moves, lighting changes and FX while keeping the original character, composition and style intact.
prompt* (string) Up to 2048 characters describing motion, camera, lighting and style. Example: “Dynamic anime close-up, wind blowing cloak and hair, camera slowly circling, sparks and glowing embers in the background.”
image* (URL or upload) The source frame to animate. Front-facing, well-lit images work best.
resolution One of 360p, 540p, 720p, 1080p.
duration 5, 8 or 10 seconds.(10 seconds is not available for 1080p)
thinking_type
"enabled" – Turn on system-level reasoning to structure and optimise your prompt.
"disabled" – Use your prompt exactly as written.
"auto" (default) – Let the system decide whether to enable prompt optimizer automatically.
negative_prompt (optional) Words you don’t want in the video, e.g. watermark, logo, text, distortion.
seed (integer) Fix a seed for reproducible runs, or change it to get new variations from the same setup.
| Resolution | 5s clip (total) | 8s clip (total) | 10s clip (total)* |
|---|---|---|---|
| 360p | $0.85 | $1.30 | $1.39 |
| 540p | $0.85 | $1.30 | $1.39 |
| 720p | $1.00 | $1.60 | $1.72 |
| 1080p | $1.60 | $2.80 | - |
Upload your image Add a clean, high-quality frame under image – ideally with clear subject and minimal motion blur.
Write the prompt Focus on how things move, camera path and overall mood, not on redesigning the character.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5/image-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 Image To Video below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5/image-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",
"image": "https://example.com/your-input.jpg",
"resolution": "540p",
"duration": 5,
"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/image-to-video", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"resolution": "540p",
"duration": 5,
"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/image-to-video",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"resolution": "540p",
"duration": 5,
"generate_audio_switch": false,
"generate_multi_clip_switch": false,
"thinking_type": "auto"
}
)
print(output["outputs"][0]) # → URL of the generated outputPixverse v5.5 Image To Video is a Pixverse model for video generation from images, exposed as a REST API on WaveSpeedAI. PixVerse V5.5 Image-to-Video turns a single image into cinematic clips with smooth motion, clean detail, and strong subject fidelity—ideal for logo stingers, character motion, and social posts. 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-v5.5-image-to-video.
Pixverse v5.5 Image 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`, `image`, `resolution`, `duration`, `generate_audio_switch`, `generate_multi_clip_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-v5.5-image-to-video.
Average end-to-end generation time on WaveSpeedAI is around 84 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.