More modelsBytedanceSeedance v1 lite t2v 1080p

Generate video with bytedance/seedance-v1-lite-t2v-1080p

Generates a video using the bytedance/seedance-v1-lite-t2v-1080p model.

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

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

In: header

seed?integer

The random seed to use for the generation. -1 means a random seed will be used.

Default-1
modelstring

model name

promptstring

Text prompt for video generation; Positive text prompt; Cannot exceed 2000 characters.

Lengthlength <= 2000
duration?integer

The duration of the generated media in seconds.

Default5
Range5 <= value <= 10
aspect_ratio?string

The aspect ratio of the generated video.

Value in"21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16" | "9:21"
camera_fixed?boolean

Whether to fix the camera position.

Defaultfalse

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "bytedance/seedance-v1-lite-t2v-1080p",    "prompt": "A detective enters a dimly lit room. Multiple shots: he inspects clues on a table, picks up an object thoughtfully. The camera cuts to a close-up of his contemplative expression."  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}