Pixverse Pixverse V5.5 Effects
Playground
Try it on WavespeedAI!PixVerse V5.5 Effects is an AI image-to-video model that converts still images into smooth, natural short videos with lifelike motion, supporting 5s/8s/10s clips at 360p to 1080p for social posts, ads, and previews. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Features
PixVerse v5.5 — Effects
PixVerse v5.5 Effects turns a single portrait into a short, stylised video with one-click cinematic presets. Pick looks like Kiss Me AI, Muscle Surge, Anything, Robot, The Tiger Touch, Holy Wings, Hulk, Venom, Microwave and more… then set resolution, duration, and aspect ratio for platform-ready clips.
See more video effects here!
Highlights
- Face-aware effects that keep the person’s identity while adding makeup, props, VFX and motion.
- Clean compositing & grading the effect feels shot in-camera, not pasted on top.
- Multiple aspect ratios (16:9, 1:1, 4:3, 3:4, 9:16) for feeds, stories, shorts and banners.
- Fast generation from 360p–1080p, with optional negative prompts to reduce artifacts.
Parameters
- image (required) – Portrait or bust shot (URL or upload).
- effect (required) – One of the curated presets (list above; may grow over time).
- resolution – 360p, 540p, 720p, 1080p.
- duration – 5s , 8s or 10s.
- negative_prompt (optional) – Avoid generate mentioned words. (e.g. watermark, text, distortion, extra limbs).
How to use
-
Upload a clear, front-facing portrait (avoid heavy occlusion or motion blur).
-
Choose an effect preset that matches the mood you want.
-
Set resolution (360p - 1080p), aspect_ratio, and duration (5s, 8s or 10s).
-
Tune control options
-
Add a negative_prompt to explicitly block artefacts (e.g. “no watermark, no text”).
-
Set thinking_type to enabled if you want the system to help refine/interpret a complex prompt; keep auto to let the model decide whether to turn on.
-
-
Click Run, then preview and download the generated clip.
Pricing
| Resolution | 5 (s) | 8 (s) | 10 (s) |
|---|---|---|---|
| 360p | $0.45 | $0.9 | $0.99 |
| 540p | $0.45 | $0.9 | $0.99 |
| 720p | $0.6 | $1.2 | $1.32 |
| 1080p | $1.2 | $2.4 | - |
Tips
- Use evenly lit, front-facing portraits for the most stable, flattering effect.
- For casual social posts, 540p or 720p usually offers the best balance of speed and quality.
- For hero creatives or further editing in Non Linear Editors, pick 1080p and 8s.
- If hands, hair or edges look strange, try a different preset, a tighter crop, or add a short negative prompt (e.g. no extra hands, no warped hair).
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5-effects" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"effect": "Kiss Me AI",
"resolution": "540p",
"duration": 5,
"thinking_type": "auto"
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| effect | string | Yes | Kiss Me AI | 3D Figurine Factor, 3D Naked-Eye AD, Anything, Robot, Baby Arrived, Baby Face, Bald Swipe, Bikini Up, Black Myth: Wukong, BOOM DROP, Creepy Devil Smile, Dishes Served, Dragon Evoker, Dust Me Away, Earth Zoom, Eye Zoom Challenge, Fin-tastic Mermaid, GhostFace Terror, Halloween Voodoo Doll, Holy Wings, Hug, Huge Cutie, Kiss, Kiss Me AI, Leggy Run, Liquid Metal, Long Hair Magic, Microwave, Muscle Surge, My Boyfriends, My Girlfriends, Ocean ad, Package Explosion, Pole Dance, Punch Face, Sharksnap!, Skeletal Bae, Squid Game, Subject 3 Fever, Summoning succubus, Supermarket AD, The Tiger Touch, Thunder God, Venom, Vroom Dance, Warmth of Jesus, Werewolf Rage, Who's Arrested?, Zombie Mode | Effect for video generation. |
| image | string | Yes | - | Supported image formats include.jpg/.jpeg/.png; The image file size cannot exceed 10MB, and the image resolution should not be less than 300*300px, and the aspect ratio of the image should be between 1:2.5 ~ 2.5:1. | |
| resolution | string | No | 540p | 360p, 540p, 720p, 1080p | Video quality (360p/540p/720p/1080p). |
| duration | integer | No | 5 | 5, 8, 10 | Video duration in seconds. |
| negative_prompt | string | No | - | The negative prompt for the generation. | |
| thinking_type | string | No | auto | enabled, disabled, auto | Prompt reasoning enhancement. Controls whether the system should enhance your prompt with internal reasoning and optimization. "enabled" : Turn on system-level optimization. "disabled" : Turn off system-level optimization. "auto" or omitted: Let the model decide automatically |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |