How to use Image-to-video
Overview
POST https://app-api.pixverse.ai/openapi/v2/video/img/generate
API reference
Prerequisites
Step-by-Step Guide
1. Prepare Your Image
2. Prepare Your upload image API Request and uplaod image to get img_id
3. Prepare your image-to-video API request
4. Parameter details
Parameter Name | Required | Type | Description |
---|---|---|---|
model | Required | string | v3.5 |
prompt | Required | string | =< 2048 characters |
negative_prompt | Optional | string | =< 2048 characters |
img_id | Requried | integer | Image ID after uploading image interface. Required for image-to-video generation |
template_id | Optional | integer | Must activate effects in effects management before use. Some effects don't support certain resolutions, please check effects management |
style | Optional | string | "anime" "3d_animation" "day" "cyberpunk" "comic" Do not include style parameter unless needed |
motion_mode | Optional | string | Default - "normal" "fast"(only allows 5-second duration) 1080p doesn't support "fast". If not provided, defaults to normal |
duration | Required | integer | 5,8 1080p doesn't support 8 |
quality | Required | string | "360p"(Turbo model), "540p", "720p", "1080p" |
seed | Optional | integer | Random seed, int32 random number between 0 - 2147483647 |
5. Handle the API Response
{
"ErrCode": 0,
"ErrMsg": "success",
"Resp": {
"video_id": 0
}
}
6. Check Generation Status
{
"ErrCode": 0,
"ErrMsg": "string",
"Resp": {
"create_time": "string",
"id": 0,
"modify_time": "string",
"negative_prompt": "string",
"outputHeight": 0,
"outputWidth": 0,
"prompt": "string",
"resolution_ratio": 0,
"seed": 0,
"size": 0,
"status": 5,
"style": "string",
"url": "string"
}
}
7. Download the Generated Video
{
"ErrCode": 0,
"ErrMsg": "string",
"Resp": {
"create_time": "string",
"id": 0,
"modify_time": "string",
"negative_prompt": "string",
"outputHeight": 0,
"outputWidth": 0,
"prompt": "string",
"resolution_ratio": 0,
"seed": 0,
"size": 0,
"status": 1,
"style": "string",
"url": "string"
}
}
Trobule shooting
Common issue
1.
2.