Skip to main content
PixVerseMediumHigh

PixVerse V6

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.

810 credits
per 5s 540p video, no audio (default) โ€” billed per second by quality x audio: 360p 116/162, 540p 162/209, 720p 209/278, 1080p 417/533 (no-audio/with-audio)
Synchronized AI audio: BGM, sound effects, and character dialogue
Multi-shot generation with scene transitions via generate_multi_clip_switch
Astonishingly realistic physics and precise camera control
Four resolution tiers from 360p to 1080p
Image-to-video and first-to-last-frame transitions

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

Quick Start

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
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text prompt for video generation
imagestringNo-Image to use for the first frame of the video
last_frame_imagestringNo-Generate a video that transitions from the first image to this last image. Must be used with image
qualitystringNo540pResolution of the video. Higher resolutions cost more per second
360p540p720p1080p
durationintegerNo5Duration of the video in seconds. Billing is per second
581015
aspect_ratiostringNo16:9Aspect ratio. Only used for text-to-video; ignored when image or last_frame_image is provided
16:99:161:1
generate_audio_switchbooleanNofalseEnable AI-generated audio including BGM, SFX, and character dialogues
generate_multi_clip_switchbooleanNofalseEnable multi-shot generation for cinematic sequences with scene transitions. Text-to-video and image-to-video only (not transitions)
negative_promptstringNo-Negative prompt to avoid certain elements in the video
seedintegerNo-Random seed. Set for reproducible generation

How to Provide File Input

There are 3 ways to provide files for the imagelast_frame_image parameters:

Recommended

Direct Upload (Multipart)

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"

Image URL

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"
  }
}
See the File Upload docs for more upload methods including Presigned URLs.

Common Parameters

Common parameters used when calling POST /v1/predictions.

ParameterTypeRequiredDefaultDescription
modelstringYes-Model identifier
inputobjectYes-Object containing the model-specific parameters from the table above
output_folderstringNo-Folder path for output files (max 256 chars, '..' not allowed)
webhook_urlstringNo-Webhook URL to call on completion
is_publicbooleanNofalseIf true, output files are also available via permanent public URLs

Examples

Storyboarded Brand Film (1080p, Audio, Multi-Clip)

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
  }
}'

Cheap 540p Draft (Silent)

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
  }
}'

Tips & Best Practices

11080p with audio is the most expensive combination (345/s โ€” over 3x the default rate); iterate at 540p and upgrade only for finals
2Audio adds roughly 30-40% per second at 360p-540p but only 28% at 1080p โ€” check the per-tier table before enabling it
3360p without audio (75/s) is the cheapest way to test motion and composition
4generate_multi_clip_switch works for text-to-video and image-to-video, but not for first-to-last-frame transitions
5Write storyboard-style prompts (shot-by-shot with timings and camera moves) to get the most out of multi-clip mode

Use Cases

E-commerce and brand films with storyboarded multi-shot sequences
Cinematic clips with fully synced BGM, SFX, and dialogue
Cheap 360p/540p drafts before committing to 1080p finals
Image-to-video animation of product or key art frames
Smooth transition videos between a first and last frame