Video models
PixVerse V6
On this page
PixVerse's latest video model — stylized, high-motion text- and image-to-video.
| modelId | pixverse-v6 |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| Default | pixverse-v6 | POST /api/v1/generate | prompt, quality, duration, aspect_ratio |
| Poll task | — | GET /api/v1/task/{id}?model=pixverse-v6 | — |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | Text value (default: A neon koi fish drifts through a rain-soaked Tokyo alley at night, reflections rippling across the wet pavement.) |
| quality | string | Yes | Options: 360p | 540p | 720p | 1080p (default: 720p) |
| duration | number | Yes | Range 1-15 (default: 5) |
| aspect_ratio | string | Yes | Options: 16:9 | 4:3 | 1:1 | 3:4 | 9:16 | 21:9 (default: 16:9) |
| generate_audio_switch | boolean | No | True/false (default: false) |
| seed | number | No | Text value |
| generate_multi_clip_switch | boolean | No | True/false (default: false) |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"pixverse-v6","input":{"prompt":"A cinematic aerial shot of a coastal town at golden hour, gentle waves rolling onto the shore, warm light, slow camera push-in.","quality":"720p","duration":5,"aspect_ratio":"16:9","generate_audio_switch":false,"seed":1,"generate_multi_clip_switch":false}}'