Pixverse v6
Pixverse v6 Video Generation
- Pixverse v6 unified video generation model
- Supports text-to-video, image-to-video, first/last frame transition, multi-reference fusion, and video extension
- Supports 360p/540p/720p/1080p resolutions with 1-15 seconds duration
- Asynchronous task API; query the result by task ID after submission
POST
Authentication
string
required
All endpoints require authentication using a Bearer Token.Get an API Key:Visit the API Key management page to obtain your API Key.Add the following header in your request:
Request Parameters
string
required
Video generation model name. Fixed to
pixverse-v6.string
required
Video content description, up to 5000 characters. Required for all modes.
string
default:"540p"
Video resolution tier; directly affects pricing.
360p: SD540p: Standard (default)720p: HD1080p: Full HD
integer
default:"5"
Video duration in seconds, range
1-15.string
default:"16:9"
Video aspect ratio. Only effective in text-to-video and multi-reference fusion modes.
16:9: Landscape widescreen (default)4:3: Landscape 4:31:1: Square3:4: Portrait 3:49:16: Portrait vertical2:3: Portrait 2:33:2: Landscape 3:221:9: Cinematic widescreen
integer
default:"0"
Random seed, range
0-2147483647. Same prompt and seed can reproduce similar results.string
Negative prompt used to exclude unwanted content, up to 2048 characters.
boolean
default:"false"
Whether to generate an audio track.
true: Generate audio (increases pricing)false: No audio (default)
boolean
default:"false"
Whether to add a watermark in the bottom-right corner of the video.
true: Add watermarkfalse: No watermark (default)
string
Motion mode.
normal: Standard mode (pixverse-v6only supports this value)
boolean
default:"false"
Whether to generate a multi-clip continuous video. Only supported in text-to-video and image-to-video modes.
true: Generate multi-clip continuous videofalse: Single clip (default)
array<url>
Input image URL array for image-to-video; only the first image is used.Images must be publicly accessible HTTP/HTTPS URLs.
url
First frame image URL for transition mode. Must be provided together with
last_frame_image.url
Last frame image URL for transition mode. Must be provided together with
first_frame_image.array<url>
Reference image URL array for multi-reference fusion mode; supports 1-7 images.Providing this field triggers multi-reference fusion mode.
string
Source task ID for video extension. Providing this field triggers video extension mode.The source task must belong to the current user, use model
pixverse-v6, and have status completed.Generation Modes
The adapter automatically dispatches to the corresponding generation mode based on request fields. Matching is done in priority order; the first match wins.Parameter Rules
Response
integer
Response status code.
200 on success.array
Returned task array.
Querying Task Results
Video generation is an asynchronous task. After submission, atask_id is returned. Use the Get Task Status endpoint to query progress and results.
cURL
completed or failed.
Successful Result Example
data.result.videos[0].url[0]. The url field is itself an array. Video links typically expire after 24 hours; download or transfer them in time.
Failed Result Example
cost is typically 0. Read the error reason from data.error.message.