PixVerse's flagship video generation model. Generates cinematic videos with synchronized audio, multi-shot sequences with scene transitions, astonishing physics, and precise camera control at up to 1080p.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "pixverse/pixverse-v6",
"input": {
"prompt": "E-commerce brand film for natural pure cotton loungewear, Japanese minimalist lifestyle aesthetic. Shot 1 (0-4s): warm morning sunlight through floor-to-ceiling windows, a woman in off-white loungewear holds a mug by the window, slow push-in. Shot 2 (4-8s): close-up of fabric texture as a breeze sways the hem, sunlight through the cotton. Shot 3 (8-12s): wide tracking shot as she walks toward a raw wood shelf, soft light and shadow. Shot 4 (12-15s): she sits gazing out the window, negative-space composition, slow pull out and fade. Sound: distant birdsong, fabric rustle, soothing acoustic guitar",
"quality": "1080p",
"duration": 15,
"aspect_ratio": "16:9",
"generate_audio_switch": true,
"generate_multi_clip_switch": true
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text prompt for video generation |
image | string | No | - | Image to use for the first frame of the video |
last_frame_image | string | No | - | Generate a video that transitions from the first image to this last image. Must be used with image |
quality | string | No | 540p | Resolution of the video. Higher resolutions cost more per second 360p540p720p1080p |
duration | integer | No | 5 | Duration of the video in seconds. Billing is per second 581015 |
aspect_ratio | string | No | 16:9 | Aspect ratio. Only used for text-to-video; ignored when image or last_frame_image is provided 16:99:161:1 |
generate_audio_switch | boolean | No | false | Enable AI-generated audio including BGM, SFX, and character dialogues |
generate_multi_clip_switch | boolean | No | false | Enable multi-shot generation for cinematic sequences with scene transitions. Text-to-video and image-to-video only (not transitions) |
negative_prompt | string | No | - | Negative prompt to avoid certain elements in the video |
seed | integer | No | - | Random seed. Set for reproducible generation |
There are 3 ways to provide files for the imagelast_frame_image parameters:
Attach files directly to POST /v1/predictions/upload. No separate upload step needed.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=pixverse/pixverse-v6" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"Pass a publicly accessible URL directly. You can also use file_url from the Storage API.
{
"model": "pixverse/pixverse-v6",
"input": {
"prompt": "your prompt here",
"image": "https://example.com/image.jpg"
}
}Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
A 15-second multi-shot brand film at the top tier with synced audio
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "pixverse/pixverse-v6",
"input": {
"prompt": "E-commerce brand film for natural pure cotton loungewear, Japanese minimalist lifestyle aesthetic. Shot 1 (0-4s): warm morning sunlight through floor-to-ceiling windows, a woman in off-white loungewear holds a mug by the window, slow push-in. Shot 2 (4-8s): close-up of fabric texture as a breeze sways the hem, sunlight through the cotton. Shot 3 (8-12s): wide tracking shot as she walks toward a raw wood shelf, soft light and shadow. Shot 4 (12-15s): she sits gazing out the window, negative-space composition, slow pull out and fade. Sound: distant birdsong, fabric rustle, soothing acoustic guitar",
"quality": "1080p",
"duration": 15,
"aspect_ratio": "16:9",
"generate_audio_switch": true,
"generate_multi_clip_switch": true
}
}'The default tier for fast, low-cost prompt iteration
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "pixverse/pixverse-v6",
"input": {
"prompt": "A glass of iced tea on a wooden cafรฉ table, condensation dripping, soft afternoon light, gentle camera orbit",
"quality": "540p",
"duration": 5,
"aspect_ratio": "16:9",
"generate_audio_switch": false
}
}'POST /v1/predictions