Skip to main content
POST
/
v3
/
async
/
pixverse-v6-transition
PixVerse V6 Transition Video Generation
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/pixverse-v6-transition \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "seed": 123,
  "image": "<string>",
  "style": "<string>",
  "prompt": "<string>",
  "duration": 123,
  "end_image": "<string>",
  "resolution": "<string>",
  "aspect_ratio": "<string>",
  "thinking_type": true,
  "negative_prompt": "<string>",
  "generate_audio_switch": true,
  "generate_multi_clip_switch": true
}
'
{
  "task_id": "<string>"
}
PixVerse V6 transition video generation model. Generates a smooth transition video between two images using a text prompt, supporting multiple resolutions and audio generation.
This is an asynchronous API and will only return the task_id of the asynchronous task. You should use this task_id to request the Get Task Result API to retrieve the generated result.

Request Headers

Content-Type
string
required
Enum value: application/json
Authorization
string
required
Bearer authentication format: Bearer {{API Key}}.

Request Body

seed
integer
Random seed for reproducible generation
image
string
required
Starting frame image URL
style
string
Visual style of the video
prompt
string
required
Text description of the transition video
duration
integer
default:5
Video duration (seconds)
end_image
string
Transition ending frame image URL
resolution
string
default:"720p"
Output video resolutionOptional values: 360p, 540p, 720p, 1080p
aspect_ratio
string
default:"1:1"
Aspect ratio of the output video
thinking_type
boolean
Enable prompt optimization
negative_prompt
string
Negative prompt, used to exclude unwanted elements
generate_audio_switch
boolean
default:false
Enable video audio generation
generate_multi_clip_switch
boolean
default:false
Enable multi-clip video generation

Response

task_id
string
required
Use the task_id to request the Get Task Result API to retrieve the generated output.