Skip to main content
POST
/
v3
/
async
/
pixverse-v6-extend
PixVerse V6 Video Extension
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/pixverse-v6-extend \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "seed": 123,
  "style": "<string>",
  "video": "<string>",
  "prompt": "<string>",
  "duration": 123,
  "resolution": "<string>",
  "negative_prompt": "<string>",
  "generate_audio_switch": true
}
'
{
  "task_id": "<string>"
}
PixVerse V6 Video Extension analyzes the ending segment of an existing video and generates new frames forward, continuing and enhancing the video content while maintaining natural motion and dynamic scene effects.
This is an asynchronous API and only returns the asynchronous task’s task_id. You should use this task_id to request the Get Task Result API to retrieve the generation 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 results.
style
string
Visual style applied to the extended content.
video
string
required
Source video URL to be extended. It must be a publicly accessible link.
prompt
string
required
Text prompt describing what should happen in the extended segment.
duration
integer
default:5
Extension duration (seconds).Value range: [1, 15]
resolution
string
default:"720p"
Output video resolution.Allowed values: 360p, 540p, 720p, 1080p
negative_prompt
string
Elements to exclude from the extended content.
generate_audio_switch
boolean
default:false
Whether to generate synchronized audio for the extended video.

Response

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