More modelsPixversePixverse v4.5 i2v

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

Generates a video using the pixverse/pixverse-v4.5-i2v 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" | "1080p"
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",    "image": "https://static.atlascloud.ai/media/images/1752147632407768438_ZiFCzvso.jpeg",    "prompt": "The woman in the image strikes a pose, then starts walking confidently on a fashion runway, flashbulbs going off"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}