Skip to main content
POST
/
v3
/
async
/
pixverse-pixverse-c1-transition
PixVerse C1 First and Last Frame to Video
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/pixverse-pixverse-c1-transition \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "image": "<string>",
  "prompt": "<string>",
  "duration": 123,
  "end_image": "<string>",
  "resolution": "<string>",
  "generate_audio_switch": true
}
'
{
  "task_id": "<string>"
}
The PixVerse C1 first-and-last-frame-to-video model generates smooth video transition effects based on a starting frame and an ending frame. It supports multiple resolution and duration configurations, with optional synchronized audio generation.
This is an asynchronous API and only returns the asynchronous task_id. 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

image
string
required
Starting frame image URL
prompt
string
required
Positive prompt text describing the transition effectLength limit: 0 - 2048
duration
integer
default:5
Duration of the generated video (seconds), range 1-15Value range: [1, 15]
end_image
string
required
Ending frame image URL
resolution
string
default:"720p"
Resolution of the generated videoAvailable values: 360p, 540p, 720p, 1080p
generate_audio_switch
boolean
default:false
Whether to generate audio at the same time as the video

Response Information

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