Skip to main content
POST
/
generation
/
pixverse
/
v6
PixVerse V6
curl --request POST \
  --url https://open.skills.video/api/v1/generation/pixverse/v6 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "<string>",
  "image_url": "<string>"
}
'
{
  "id": "gen_123",
  "status": "IN_QUEUE",
  "input": {
    "prompt": "a cat walking through neon rain",
    "duration": 5,
    "aspect_ratio": "16:9",
    "n": 1
  },
  "usage": {
    "total": 20,
    "subscription": 20,
    "permanent": 0
  }
}
PixVerse V6 unified video model for text-to-video and image-to-video generation.

Authorizations

Authorization
string
header
required

API Key for API endpoints

Body

prompt
string
required

Prompt for video generation

feature
string

Workflow type: text/image-to-video, first/last-frame transition, or video extension.

Allowed value: "text-image"
resolution
enum<string>
default:720p

The resolution of the generated video

Available options:
360p,
540p,
720p,
1080p
duration
number
default:5

The duration of the generated video in seconds

Required range: 1 <= x <= 15
negative_prompt
string
default:""

Negative prompt to be used for generation

style
enum<string>

The style of the generated video

Available options:
anime,
3d_animation,
clay,
comic,
cyberpunk
seed
number

Random seed for generation

generate_audio
boolean
default:false

Enable audio generation (BGM, SFX, dialogue)

image_url
string<uri>

Optional source image URL. If provided, generation runs in image-to-video mode.

aspect_ratio
enum<string>
default:16:9

The aspect ratio of the generated video

Available options:
16:9,
4:3,
1:1,
3:4,
9:16,
2:3,
3:2,
21:9
generate_multi_clip
boolean
default:false

Enable multi-clip generation with dynamic camera changes

thinking_type
enum<string>
default:auto

Prompt optimization mode

Available options:
enabled,
disabled,
auto
{key}
any

Response

Generation submission accepted

id
string
required

Generation id.

status
enum<string>
required

Queue status

Available options:
IN_QUEUE,
IN_PROGRESS,
COMPLETED,
FAILED,
CANCELED
input
Text/Image · object
required

Normalized input payload for the generation task.

usage
object
required

Credit usage breakdown for the request

code
string

Machine-readable generation error code. Present when status is FAILED.

message
string

Sanitized human-readable failure message. Present when status is FAILED.