Skip to main content
POST
C1 First-Last-Frame to Video

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer YOUR_API_KEY.

Body

application/json

PixVerse first-last-frame request. Generates a video transitioning from a start frame to an end frame. Used by both v6 and c1 (the path determines the model version).

first_frame_image
string
required

Start frame image URL.

Minimum string length: 1
Example:

"https://example.com/start.png"

last_frame_image
string
required

End frame image URL.

Minimum string length: 1
Example:

"https://example.com/end.png"

prompt
string
required

Description of the transition / motion.

Required string length: 1 - 5000
Example:

"Smooth transition from day to night"

duration
integer
required

Video duration in seconds (required).

Required range: 1 <= x <= 15
Example:

5

quality
enum<string>
required

Output resolution (required).

Available options:
360p,
540p,
720p,
1080p
Example:

"720p"

seed
integer

Random seed (omit for random).

Required range: 0 <= x <= 2147483647
Example:

0

generate_audio_switch
boolean
default:false

Whether to generate audio.

Example:

false

Response

Task submitted successfully

code
integer
required

Response code, 0 indicates success

Example:

0

message
string
required

Response message

Example:

"success"

data
object
required

Detailed data about the submitted asynchronous task.