More modelsPixversePixverse v4.5 t2v

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

Generates a video using the pixverse/pixverse-v4.5-t2v 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
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
resolutionstring

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

Value in"360p" | "540p" | "720p" | "1080p"
aspect_ratiostring

Video aspect ratio (16:9, 4:3, 1:1, 3:4, 9:16).

Value in"16:9" | "4:3" | "1:1" | "3:4" | "9:16"
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-t2v",    "prompt": "An astronaut floating weightlessly inside a space station, Earth visible outside the window, 4K cinematic shot",    "resolution": "540p",    "aspect_ratio": "16:9"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}