Pixverse v5.6 | Text to Video
Generate videos from text prompts using Pixverse v5.6 with style presets, audio generation, prompt optimization, and up to 1080p resolution.
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-6-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "A robot walking through a neon-lit cyberpunk city at night",
"duration": "5",
"aspect_ratio": "16:9",
"resolution": "720p"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
16:9 |
Aspect ratio. enum: 16:9, 4:3, 1:1, 3:4, 9:16 |
| duration |
string |
5 |
Duration in seconds. 1080p limited to 5 or 8. enum: 5, 8, 10 |
| generate_audio_switch |
boolean |
false |
Enable audio generation (BGM, SFX, dialogue). |
| negative_prompt |
string |
|
Negative prompt to avoid unwanted content. |
| prompt |
string |
|
Text prompt for video generation. |
| resolution |
string |
720p |
Video resolution. enum: 360p, 540p, 720p, 1080p |
| seed |
integer |
|
Random seed for reproducible results. |
| style |
string |
|
Video style. enum: anime, 3d_animation, clay, comic, cyberpunk |
| thinking_type |
string |
|
Prompt optimization mode. enum: enabled, disabled, auto |
Examples
Cyberpunk-style 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-6-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "Flying cars zooming through a futuristic megacity with holographic ads",
"duration": "8",
"aspect_ratio": "16:9",
"style": "cyberpunk",
"resolution": "1080p",
"generate_audio_switch": true
}
}'
Anime video with prompt optimization:
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-6-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "A magical girl transformation sequence with sparkles and ribbons",
"duration": "5",
"aspect_ratio": "9:16",
"style": "anime",
"thinking_type": "enabled",
"negative_prompt": "blurry, deformed, static"
}
}'
Clay animation style:
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-6-text-to-video",
"version": "0.0.1",
"input": {
"prompt": "A cute dinosaur eating leaves from a tall tree",
"duration": "5",
"aspect_ratio": "1:1",
"style": "clay",
"resolution": "720p",
"seed": 7777
}
}'
Related Models
Documentation
1---2name: pixverse-v5-6-text-to-video3description: Pixverse v5.6 | Text to Video. Generate videos from text with style presets, audio, and prompt optimization. Triggers: text to video, pixverse, video generation, t2v4---56# Pixverse v5.6 | Text to Video78Generate videos from text prompts using Pixverse v5.6 with style presets, audio generation, prompt optimization, and up to 1080p resolution.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-6-text-to-video",20 "version": "0.0.1",21 "input": {22 "prompt": "A robot walking through a neon-lit cyberpunk city at night",23 "duration": "5",24 "aspect_ratio": "16:9",25 "resolution": "720p"26 }27 }'28```2930## Parameters3132| Parameter | Type | Default | Description |33|-----------|------|---------|-------------|34| aspect_ratio | string | 16:9 | Aspect ratio. enum: 16:9, 4:3, 1:1, 3:4, 9:16 |35| duration | string | 5 | Duration in seconds. 1080p limited to 5 or 8. enum: 5, 8, 10 |36| generate_audio_switch | boolean | false | Enable audio generation (BGM, SFX, dialogue). |37| negative_prompt | string | | Negative prompt to avoid unwanted content. |38| prompt | string | | Text prompt for video generation. |39| resolution | string | 720p | Video resolution. enum: 360p, 540p, 720p, 1080p |40| seed | integer | | Random seed for reproducible results. |41| style | string | | Video style. enum: anime, 3d_animation, clay, comic, cyberpunk |42| thinking_type | string | | Prompt optimization mode. enum: enabled, disabled, auto |4344## Examples4546**Cyberpunk-style video:**47```bash48curl -X POST https://api.eachlabs.ai/v1/prediction \49 -H "Content-Type: application/json" \50 -H "X-API-Key: $EACHLABS_API_KEY" \51 -d '{52 "model": "pixverse-v5-6-text-to-video",53 "version": "0.0.1",54 "input": {55 "prompt": "Flying cars zooming through a futuristic megacity with holographic ads",56 "duration": "8",57 "aspect_ratio": "16:9",58 "style": "cyberpunk",59 "resolution": "1080p",60 "generate_audio_switch": true61 }62 }'63```6465**Anime video with prompt optimization:**66```bash67curl -X POST https://api.eachlabs.ai/v1/prediction \68 -H "Content-Type: application/json" \69 -H "X-API-Key: $EACHLABS_API_KEY" \70 -d '{71 "model": "pixverse-v5-6-text-to-video",72 "version": "0.0.1",73 "input": {74 "prompt": "A magical girl transformation sequence with sparkles and ribbons",75 "duration": "5",76 "aspect_ratio": "9:16",77 "style": "anime",78 "thinking_type": "enabled",79 "negative_prompt": "blurry, deformed, static"80 }81 }'82```8384**Clay animation style:**85```bash86curl -X POST https://api.eachlabs.ai/v1/prediction \87 -H "Content-Type: application/json" \88 -H "X-API-Key: $EACHLABS_API_KEY" \89 -d '{90 "model": "pixverse-v5-6-text-to-video",91 "version": "0.0.1",92 "input": {93 "prompt": "A cute dinosaur eating leaves from a tall tree",94 "duration": "5",95 "aspect_ratio": "1:1",96 "style": "clay",97 "resolution": "720p",98 "seed": 777799 }100 }'101```102103## Related Models104105- [pixverse-v5-6-image-to-video](../pixverse-v5-6-image-to-video/) - Pixverse v5.6 image to video106- [pixverse-v5-6-transition](../pixverse-v5-6-transition/) - Pixverse v5.6 transitions107108## Documentation109110- [each::labs Docs](https://docs.eachlabs.ai)111- [API Reference](https://docs.eachlabs.ai/api/overview)