Skip to content
Docs menu

Video models

PixVerse V6

On this page

PixVerse's latest video model — stylized, high-motion text- and image-to-video.

modelIdpixverse-v6
Modalityvideo
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationmodelIdEndpointRequired input
Defaultpixverse-v6POST /api/v1/generateprompt, quality, duration, aspect_ratio
Poll taskGET /api/v1/task/{id}?model=pixverse-v6

Input parameters

FieldTypeRequiredValues / example
promptstringYesText value (default: A neon koi fish drifts through a rain-soaked Tokyo alley at night, reflections rippling across the wet pavement.)
qualitystringYesOptions: 360p | 540p | 720p | 1080p (default: 720p)
durationnumberYesRange 1-15 (default: 5)
aspect_ratiostringYesOptions: 16:9 | 4:3 | 1:1 | 3:4 | 9:16 | 21:9 (default: 16:9)
generate_audio_switchbooleanNoTrue/false (default: false)
seednumberNoText value
generate_multi_clip_switchbooleanNoTrue/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}}'