Pixverse v5.5 | Image to Video
Animate a static image into a video with support for multiple artistic styles, resolutions up to 1080p, and multi-clip generation with dynamic camera changes.
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-image-to-video",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/landscape.jpg",
"prompt": "gentle wind blowing through the trees, birds flying",
"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 |
| generate_audio_switch |
boolean |
false |
Enable audio generation (BGM, SFX, dialogue). |
| generate_multi_clip_switch |
boolean |
false |
Enable multi-clip generation with dynamic camera changes. |
| image_url |
string |
|
URL of the image to use as the first frame. |
| negative_prompt |
string |
|
Negative prompt to be used for the generation. |
| prompt |
string |
|
Text prompt describing the desired motion. |
| 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 image animation:
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-image-to-video",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/anime-scene.jpg",
"prompt": "character turns around and smiles, hair flowing in the wind",
"style": "anime",
"duration": "8",
"resolution": "1080p",
"generate_audio_switch": true
}
}'
Product showcase with multi-clip:
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-image-to-video",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/product.jpg",
"prompt": "camera slowly orbits around the product, revealing details from all angles",
"aspect_ratio": "1:1",
"duration": "10",
"resolution": "720p",
"generate_multi_clip_switch": true,
"negative_prompt": "blurry, shaky, distorted"
}
}'
Related Models
Documentation
1---2name: pixverse-v5-5-image-to-video3description: Pixverse v5.5 | Image to Video. Animate images into videos with multiple styles and resolutions. Triggers: image to video, pixverse, animation, i2v, video generation4---56# Pixverse v5.5 | Image to Video78Animate a static image into a video with support for multiple artistic styles, resolutions up to 1080p, and multi-clip generation with dynamic camera changes.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-image-to-video",20 "version": "0.0.1",21 "input": {22 "image_url": "https://example.com/landscape.jpg",23 "prompt": "gentle wind blowing through the trees, birds flying",24 "duration": "5",25 "resolution": "720p"26 }27 }'28```2930## Parameters3132| Parameter | Type | Default | Description |33|-----------|------|---------|-------------|34| aspect_ratio | string | 16:9 | The aspect ratio of the generated video. enum: 16:9, 4:3, 1:1, 3:4, 9:16 |35| duration | string | 5 | The duration of the generated video in seconds. enum: 5, 8, 10 |36| generate_audio_switch | boolean | false | Enable audio generation (BGM, SFX, dialogue). |37| generate_multi_clip_switch | boolean | false | Enable multi-clip generation with dynamic camera changes. |38| image_url | string | | URL of the image to use as the first frame. |39| negative_prompt | string | | Negative prompt to be used for the generation. |40| prompt | string | | Text prompt describing the desired motion. |41| resolution | string | 720p | The resolution of the generated video. enum: 360p, 540p, 720p, 1080p |42| seed | integer | | The same seed and prompt produce the same output. |43| style | string | | The style of the generated video. enum: anime, 3d_animation, clay, comic, cyberpunk |44| thinking_type | string | | Prompt optimization mode. enum: enabled, disabled |4546## Examples4748**Anime-style image animation:**49```bash50curl -X POST https://api.eachlabs.ai/v1/prediction \51 -H "Content-Type: application/json" \52 -H "X-API-Key: $EACHLABS_API_KEY" \53 -d '{54 "model": "pixverse-v5-5-image-to-video",55 "version": "0.0.1",56 "input": {57 "image_url": "https://example.com/anime-scene.jpg",58 "prompt": "character turns around and smiles, hair flowing in the wind",59 "style": "anime",60 "duration": "8",61 "resolution": "1080p",62 "generate_audio_switch": true63 }64 }'65```6667**Product showcase with multi-clip:**68```bash69curl -X POST https://api.eachlabs.ai/v1/prediction \70 -H "Content-Type: application/json" \71 -H "X-API-Key: $EACHLABS_API_KEY" \72 -d '{73 "model": "pixverse-v5-5-image-to-video",74 "version": "0.0.1",75 "input": {76 "image_url": "https://example.com/product.jpg",77 "prompt": "camera slowly orbits around the product, revealing details from all angles",78 "aspect_ratio": "1:1",79 "duration": "10",80 "resolution": "720p",81 "generate_multi_clip_switch": true,82 "negative_prompt": "blurry, shaky, distorted"83 }84 }'85```8687## Related Models8889- [Pixverse v5.5 | Text to Video](../pixverse-v5-5-text-to-video/) - Generate video from text only90- [Pixverse v5.5 | Transition](../pixverse-v5-5-transition/) - Create transitions between two images9192## Documentation9394- [each::labs Docs](https://docs.eachlabs.ai)95- [API Reference](https://docs.eachlabs.ai/api/overview)