More modelsBytedanceSeedance v1 pro t2v 720p

Generate video with bytedance/seedance-v1-pro-t2v-720p

Generates a video using the bytedance/seedance-v1-pro-t2v-720p 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 seed for random number generation.

Default-1
promptstring

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

Lengthlength <= 2000
duration?Video Duration

Generate video duration length 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"

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "bytedance/seedance-v1-pro-t2v-720p",    "prompt": "A vibrant illustration centered on a blue macaw. Bold, cheerful, and crisp colors dominate the composition. The background bursts with vivid hues, artistic graphic elements, and organic shapes, enhancing the macaw’s presence. The overall style is expressive, creative, and visually harmonious."  }'
{
  "id": "string",
  "logs": "string",
  "urls": {
    "cancel": "http://example.com",
    "result": "http://example.com"
  },
  "input": {
    "model": "bytedance/seedance-v1-pro-t2v-720p",
    "seed": -1,
    "prompt": "A vibrant illustration centered on a blue macaw. Bold, cheerful, and crisp colors dominate the composition. The background bursts with vivid hues, artistic graphic elements, and organic shapes, enhancing the macaw’s presence. The overall style is expressive, creative, and visually harmonious.",
    "duration": 5,
    "aspect_ratio": "16:9"
  },
  "model": "string",
  "output": [
    "http://example.com"
  ],
  "status": "queued",
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}