-
Notifications
You must be signed in to change notification settings - Fork 0
Provider Pixverse
Mode: video · Models: 6
Vendor: PixVerse · Official API docs: PixVerse Platform Docs
PixVerse is a video model family with text-to-video, image-to-video (start-frame), and Fusion reference-to-video (compose from up to several reference images). Two lines are available: V6 and C1, each spanning text, image, and fusion inputs, with quality up to 1080p, durations of 5–15s, and optional native audio.
| id | Name | Input type |
|---|---|---|
pixverse-v6 |
PixVerse V6 | t2v |
pixverse-v6-image |
PixVerse V6 Image | i2v |
pixverse-v6-fusion |
PixVerse V6 Fusion | i2v |
pixverse-c1 |
PixVerse C1 | t2v |
pixverse-c1-image |
PixVerse C1 Image | i2v |
pixverse-c1-fusion |
PixVerse C1 Fusion | i2v |
# text-to-video with native audio
gen-ai generate -m pixverse-v6 \
-p "a paper boat sailing down a rain-soaked city gutter, cinematic" \
--ar 16:9 --quality 1080p -d 8 --audio-gen true
# image-to-video from a start frame
gen-ai generate -m pixverse-c1-image -i ./start.jpg \
-p "the camera slowly pulls back to reveal the skyline"
# reference-to-video (Fusion) from multiple images
gen-ai generate -m pixverse-v6-fusion -i ./ref1.jpg -i ./ref2.jpg \
-p "blend the subjects into one continuous scene"{ "name": "picsart_generate",
"arguments": {
"model": "pixverse-v6",
"prompt": "a paper boat sailing down a rain-soaked city gutter, cinematic",
"aspectRatio": "16:9",
"quality": "1080p",
"duration": 8,
"generateAudio": true
} }{ "name": "picsart_generate",
"arguments": {
"model": "pixverse-v6-fusion",
"prompt": "blend the subjects into one continuous scene",
"imageUrls": ["https://example.com/ref1.jpg", "https://example.com/ref2.jpg"]
} }Full parameter surface for every model, sourced from gen-ai models info <id> --json. CLI flags show the primary short form; the canonical --kebab-case long form always works too.
Try pixverse-v6 in Playground ↗
Input type: t2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required (≤5000 chars) |
quality |
--quality |
enum |
360p · 540p · 720p · 1080p (default 540p) |
duration |
-d |
enum |
5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 (default 5) |
generateAudio |
--audio-gen |
boolean |
true · false (default false) |
aspectRatio |
--ar |
enum |
16:9 · 4:3 · 1:1 · 3:4 · 9:16 · 2:3 · 3:2 · 21:9 (default 16:9) |
Try pixverse-v6-image in Playground ↗
Input type: i2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required (≤5000 chars) |
quality |
--quality |
enum |
360p · 540p · 720p · 1080p (default 540p) |
duration |
-d |
enum |
5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 (default 5) |
generateAudio |
--audio-gen |
boolean |
true · false (default false) |
imageUrls |
-i |
file | required image (up to 1) |
Try pixverse-v6-fusion in Playground ↗
Input type: i2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required (≤5000 chars) |
quality |
--quality |
enum |
360p · 540p · 720p · 1080p (default 540p) |
duration |
-d |
enum |
5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 (default 5) |
generateAudio |
--audio-gen |
boolean |
true · false (default false) |
aspectRatio |
--ar |
enum |
16:9 · 4:3 · 1:1 · 3:4 · 9:16 · 2:3 · 3:2 · 21:9 (default 16:9) |
imageUrls |
-i |
file | required image (up to 7) |
Try pixverse-c1 in Playground ↗
Input type: t2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required (≤5000 chars) |
quality |
--quality |
enum |
360p · 540p · 720p · 1080p (default 540p) |
duration |
-d |
enum |
5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 (default 5) |
generateAudio |
--audio-gen |
boolean |
true · false (default false) |
aspectRatio |
--ar |
enum |
16:9 · 4:3 · 1:1 · 3:4 · 9:16 · 2:3 · 3:2 · 21:9 (default 16:9) |
Try pixverse-c1-image in Playground ↗
Input type: i2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required (≤5000 chars) |
quality |
--quality |
enum |
360p · 540p · 720p · 1080p (default 540p) |
duration |
-d |
enum |
5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 (default 5) |
generateAudio |
--audio-gen |
boolean |
true · false (default false) |
imageUrls |
-i |
file | required image (up to 1) |
Try pixverse-c1-fusion in Playground ↗
Input type: i2v
| Param | CLI flag | Type | Values |
|---|---|---|---|
prompt |
-p |
text | required (≤5000 chars) |
quality |
--quality |
enum |
360p · 540p · 720p · 1080p (default 540p) |
duration |
-d |
enum |
5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15 (default 5) |
generateAudio |
--audio-gen |
boolean |
true · false (default false) |
aspectRatio |
--ar |
enum |
16:9 · 4:3 · 1:1 · 3:4 · 9:16 · 2:3 · 3:2 · 21:9 (default 16:9) |
imageUrls |
-i |
file | required image (up to 7) |
gen-ai pricing pixverse-v6 -d 8Cost scales with quality and duration. Cost is resolved per modelId via the backend /options call.
Picsart CLI & MCP · Repo · AI Playground app
Getting Started
Interfaces
Concepts
Model Reference
Providers
- All providers
- Async
- ByteDance
- Creatify
- ElevenLabs
- Flux (Black Forest Labs)
- Grok (xAI)
- Happy Horse
- HeyGen
- Hunyuan
- Ideogram
- Kling
- LTX (Lightricks)
- Luma
- MiniMax
- OpenAI
- OVI
- Picsart
- Pika
- PixVerse
- Qwen (Alibaba)
- Recraft
- Reve
- Runway
- Seedance
- Seedream
- Topaz
- VEED
- Videography
- Wan (Alibaba)
More