More modelsPixversePixverse v4.5 i2v fast

Generate video with pixverse/pixverse-v4.5-i2v-fast

Generates a video using the pixverse/pixverse-v4.5-i2v-fast model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

seed?integer

The random seed to use for the generation.

Default0
imagestring

First frame of the video; Supported image formats include.jpg/.jpeg/.png; The image file size cannot exceed 10MB, and the image resolution should not be less than 300*300px, and the aspect ratio of the image should be between 1:2.5 ~ 2.5:1.

style?string

Style preset (anime/3d_animation/clay/comic/cyberpunk, v3.5 only).

Value in"anime" | "3d_animation" | "clay" | "comic" | "cyberpunk"
promptstring

Text prompt for video generation.

Lengthlength <= 2048
resolution?string

Video quality (360p/540p/720p/1080p).

Value in"360p" | "540p" | "720p"
negative_prompt?string

Negative prompt for generation.

Lengthlength <= 2048

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "pixverse/pixverse-v4.5-i2v-fast",    "image": "https://v3.fal.media/files/zebra/qL93Je8ezvzQgDOEzTjKF_KhGKZTEebZcDw6T5rwQPK_output.png",    "prompt": "A woman warrior with her hammer walking with his glacier wolf."  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}