Pixverse v5.5 | Transition
Create smooth video transitions between two images. Supports various styles including anime, 3D animation, clay, comic, and cyberpunk with configurable resolution up to 1080p.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v5-5-transition",
"version": "0.0.1",
"input": {
"first_image_url": "https://example.com/scene1.jpg",
"end_image_url": "https://example.com/scene2.jpg",
"prompt": "smooth cinematic transition with light particles",
"duration": "5",
"resolution": "720p"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
16:9 |
The aspect ratio of the generated video. enum: 16:9, 4:3, 1:1, 3:4, 9:16 |
| duration |
string |
5 |
The duration of the generated video in seconds. enum: 5, 8, 10 |
| end_image_url |
string |
|
URL of the image to use as the last frame. |
| first_image_url |
string |
|
URL of the image to use as the first frame. |
| generate_audio_switch |
boolean |
false |
Enable audio generation (BGM, SFX, dialogue). |
| negative_prompt |
string |
|
Negative prompt to be used for the generation. |
| prompt |
string |
|
The prompt for the transition. |
| resolution |
string |
720p |
The resolution of the generated video. enum: 360p, 540p, 720p, 1080p |
| seed |
integer |
|
The same seed and prompt produce the same output. |
| style |
string |
|
The style of the generated video. enum: anime, 3d_animation, clay, comic, cyberpunk |
| thinking_type |
string |
|
Prompt optimization mode. enum: enabled, disabled |
Examples
Anime-style transition with audio:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v5-5-transition",
"version": "0.0.1",
"input": {
"first_image_url": "https://example.com/spring.jpg",
"end_image_url": "https://example.com/winter.jpg",
"prompt": "magical seasonal transformation with falling leaves",
"style": "anime",
"duration": "8",
"resolution": "1080p",
"generate_audio_switch": true
}
}'
Cyberpunk vertical transition:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v5-5-transition",
"version": "0.0.1",
"input": {
"first_image_url": "https://example.com/old-city.jpg",
"end_image_url": "https://example.com/future-city.jpg",
"prompt": "neon lights flickering as city transforms",
"style": "cyberpunk",
"aspect_ratio": "9:16",
"duration": "5",
"negative_prompt": "blurry, low quality"
}
}'
Related Models
Documentation
1---2name: pixverse-v5-5-transition3description: Pixverse v5.5 | Transition. Create video transitions between two images with customizable styles. Triggers: video transition, pixverse, morph, image transition, animation4---56# Pixverse v5.5 | Transition78Create smooth video transitions between two images. Supports various styles including anime, 3D animation, clay, comic, and cyberpunk with configurable resolution up to 1080p.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "pixverse-v5-5-transition",20 "version": "0.0.1",21 "input": {22 "first_image_url": "https://example.com/scene1.jpg",23 "end_image_url": "https://example.com/scene2.jpg",24 "prompt": "smooth cinematic transition with light particles",25 "duration": "5",26 "resolution": "720p"27 }28 }'29```3031## Parameters3233| Parameter | Type | Default | Description |34|-----------|------|---------|-------------|35| aspect_ratio | string | 16:9 | The aspect ratio of the generated video. enum: 16:9, 4:3, 1:1, 3:4, 9:16 |36| duration | string | 5 | The duration of the generated video in seconds. enum: 5, 8, 10 |37| end_image_url | string | | URL of the image to use as the last frame. |38| first_image_url | string | | URL of the image to use as the first frame. |39| generate_audio_switch | boolean | false | Enable audio generation (BGM, SFX, dialogue). |40| negative_prompt | string | | Negative prompt to be used for the generation. |41| prompt | string | | The prompt for the transition. |42| resolution | string | 720p | The resolution of the generated video. enum: 360p, 540p, 720p, 1080p |43| seed | integer | | The same seed and prompt produce the same output. |44| style | string | | The style of the generated video. enum: anime, 3d_animation, clay, comic, cyberpunk |45| thinking_type | string | | Prompt optimization mode. enum: enabled, disabled |4647## Examples4849**Anime-style transition with audio:**50```bash51curl -X POST https://api.eachlabs.ai/v1/prediction \52 -H "Content-Type: application/json" \53 -H "X-API-Key: $EACHLABS_API_KEY" \54 -d '{55 "model": "pixverse-v5-5-transition",56 "version": "0.0.1",57 "input": {58 "first_image_url": "https://example.com/spring.jpg",59 "end_image_url": "https://example.com/winter.jpg",60 "prompt": "magical seasonal transformation with falling leaves",61 "style": "anime",62 "duration": "8",63 "resolution": "1080p",64 "generate_audio_switch": true65 }66 }'67```6869**Cyberpunk vertical transition:**70```bash71curl -X POST https://api.eachlabs.ai/v1/prediction \72 -H "Content-Type: application/json" \73 -H "X-API-Key: $EACHLABS_API_KEY" \74 -d '{75 "model": "pixverse-v5-5-transition",76 "version": "0.0.1",77 "input": {78 "first_image_url": "https://example.com/old-city.jpg",79 "end_image_url": "https://example.com/future-city.jpg",80 "prompt": "neon lights flickering as city transforms",81 "style": "cyberpunk",82 "aspect_ratio": "9:16",83 "duration": "5",84 "negative_prompt": "blurry, low quality"85 }86 }'87```8889## Related Models9091- [Pixverse v5.5 | Text to Video](../pixverse-v5-5-text-to-video/) - Generate videos from text92- [Pixverse v5.5 | Image to Video](../pixverse-v5-5-image-to-video/) - Generate videos from a single image9394## Documentation9596- [each::labs Docs](https://docs.eachlabs.ai)97- [API Reference](https://docs.eachlabs.ai/api/overview)