Pixverse v5.5 | Text to Video
Generate videos from text prompts 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-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "a cat walking through a magical forest, sunlight filtering through trees",
"aspect_ratio": "16:9",
"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. |
| negative_prompt |
string |
|
Negative prompt to be used for the generation. |
| prompt |
string |
|
Text prompt describing the desired video. |
| 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 video 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-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "a samurai standing on a cliff overlooking a cherry blossom valley",
"style": "anime",
"aspect_ratio": "16:9",
"duration": "8",
"resolution": "1080p",
"generate_audio_switch": true
}
}'
Multi-clip vertical video:
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-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "a delicious plate of sushi being prepared by a chef, close-up details",
"aspect_ratio": "9:16",
"duration": "10",
"resolution": "720p",
"generate_multi_clip_switch": true,
"negative_prompt": "blurry, low quality, distorted"
}
}'
Related Models
Documentation
1---2name: pixverse-v5-5-text-to-video3description: Pixverse v5.5 | Text to Video. Generate videos from text prompts with multiple styles and resolutions. Triggers: text to video, pixverse, video generation, t2v, animation4---56# Pixverse v5.5 | Text to Video78Generate videos from text prompts 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-text-to-video",20 "version": "0.0.1",21 "input": {22 "prompt": "a cat walking through a magical forest, sunlight filtering through trees",23 "aspect_ratio": "16:9",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| negative_prompt | string | | Negative prompt to be used for the generation. |39| prompt | string | | Text prompt describing the desired video. |40| resolution | string | 720p | The resolution of the generated video. enum: 360p, 540p, 720p, 1080p |41| seed | integer | | The same seed and prompt produce the same output. |42| style | string | | The style of the generated video. enum: anime, 3d_animation, clay, comic, cyberpunk |43| thinking_type | string | | Prompt optimization mode. enum: enabled, disabled |4445## Examples4647**Anime-style video with audio:**48```bash49curl -X POST https://api.eachlabs.ai/v1/prediction \50 -H "Content-Type: application/json" \51 -H "X-API-Key: $EACHLABS_API_KEY" \52 -d '{53 "model": "pixverse-v5-5-text-to-video",54 "version": "0.0.1",55 "input": {56 "prompt": "a samurai standing on a cliff overlooking a cherry blossom valley",57 "style": "anime",58 "aspect_ratio": "16:9",59 "duration": "8",60 "resolution": "1080p",61 "generate_audio_switch": true62 }63 }'64```6566**Multi-clip vertical video:**67```bash68curl -X POST https://api.eachlabs.ai/v1/prediction \69 -H "Content-Type: application/json" \70 -H "X-API-Key: $EACHLABS_API_KEY" \71 -d '{72 "model": "pixverse-v5-5-text-to-video",73 "version": "0.0.1",74 "input": {75 "prompt": "a delicious plate of sushi being prepared by a chef, close-up details",76 "aspect_ratio": "9:16",77 "duration": "10",78 "resolution": "720p",79 "generate_multi_clip_switch": true,80 "negative_prompt": "blurry, low quality, distorted"81 }82 }'83```8485## Related Models8687- [Pixverse v5.5 | Image to Video](../pixverse-v5-5-image-to-video/) - Generate video from an image88- [Pixverse v5.5 | Transition](../pixverse-v5-5-transition/) - Create video transitions between images8990## Documentation9192- [each::labs Docs](https://docs.eachlabs.ai)93- [API Reference](https://docs.eachlabs.ai/api/overview)