Pixverse V5
Overview
Pixverse V5 is a versatile video generation model that supports both text-to-video and image-to-video modes with multiple resolution options and flexible aspect ratios.
Test API KEY: key_00000000000000000000000000000000Endpoints
1. Create Task
Request
POST https://api.pixwith.ai/api/task/createHeaders
| Header | Value | Required |
|---|---|---|
| Content-Type | application/json | Yes |
| Api-Key | {API_KEY} | Yes |
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| prompt | string | Yes | The input prompt (e.g., “A cinematic shot of a cat walking”) |
| image_urls | array | Conditional | [“https://cdn.pixwith.ai/xxx.jpg ”]. Required for image-to-video mode. Provide 1 image. |
| model_id | string | Yes | 2-27 |
| options | object | Yes | Configuration options for the task |
| options.prompt_optimization | boolean | Yes | If true, all prompt words will be automatically translated into English. |
| options.num_outputs | int | Yes | Number of videos to generate. Valid values: 1, 2, 3, or 4 |
| options.resolution | string | Yes | Resolution of the output. Valid values: '360p', '540p', '720p', or '1080p' |
| options.aspect_ratio | string | Yes | Aspect ratio of the output. Valid values: '16:9', '4:3', '1:1', '3:4', or '9:16' |
| options.duration | int | Yes | Duration in seconds. Valid values: 5 or 8 |
Example Request - Text-to-Video
{
"prompt": "A cinematic shot of a cat walking through a beautiful garden",
"model_id": "2-27",
"options": {
"prompt_optimization": true,
"num_outputs": 1,
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5
}
}Example Request - Image-to-Video
{
"prompt": "The cat starts walking towards the camera with smooth motion",
"image_urls": [
"https://cdn.pixwith.ai/images/cf0ddb5ad6a0f0c85ab4d1dceb9fd89c_0.jpeg"
],
"model_id": "2-27",
"options": {
"prompt_optimization": true,
"num_outputs": 1,
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | int | 1=success, 0=error |
| message | string | Success and failure messages |
| data | object | |
| data.task_id | string | |
| data.estimated_time | int | Estimated time in seconds |
Response
{
"code": 1,
"message": "success",
"data": {
"task_id": "d425ab4dc256f0ebaa84862b9cea8a3d",
"estimated_time": 150
}
}Last updated on