More modelsBytedanceSeedance v1 pro i2v 480p

Generate video with bytedance/seedance-v1-pro-i2v-480p

Generates a video using the bytedance/seedance-v1-pro-i2v-480p 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
imagestring

Input image for video generation; 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

prompt?string

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

Lengthlength <= 2000
durationVideo Duration

Generate video duration length seconds.

Default5
Range5 <= value <= 10

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "bytedance/seedance-v1-pro-i2v-480p",    "image": "https://static.atlascloud.ai/media/images/1750664227278090418_rvFBxuqn.png",    "duration": 5  }'
{
  "id": "string",
  "logs": "string",
  "urls": {
    "cancel": "http://example.com",
    "result": "http://example.com"
  },
  "input": {
    "model": "bytedance/seedance-v1-pro-i2v-480p",
    "seed": -1,
    "image": "https://static.atlascloud.ai/media/images/1750664227278090418_rvFBxuqn.png",
    "prompt": " A girl turns toward the camera, her earrings swaying gently with the motion. The camera rotates, bathed in dreamy sunlight.",
    "duration": 5
  },
  "model": "string",
  "output": [
    "http://example.com"
  ],
  "status": "queued",
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}