ApiframeApiframe Docs
Video GenerationSeedance

Seedance 1 Pro

ByteDance Seedance 1 Pro video generation with normalized duration and resolution variants.

Use in Apiframe Studio

POST /v2/videos/generatemodel: "seedance-1-pro"

Seedance 1 Pro supports both text-to-video and image-to-video generation through the same normalized request shape.

See Video Generation overview for common request fields, response format, and error codes.

Model-specific parameters

ParameterTypeDefaultDescription
seedanceParams.durationinteger5Video duration in seconds: 5 or 10
seedanceParams.resolutionstring"720p"Output resolution: "480p", "720p", or "1080p"
seedanceParams.aspect_ratiostring"16:9"Output aspect ratio: "21:9", "16:9", "4:3", "1:1", "3:4", "9:16", or "9:21"
seedanceParams.start_imagestringURL of an image to use as the first frame
seedanceParams.end_imagestringURL of an image to use as the ending frame where supported
seedanceParams.seedintegerOptional random seed for reproducible generations
seedanceParams.camera_fixedbooleanfalseLocks the camera for more static motion

Credit cost

VariantCredits
480p-5s6
720p-5s12
1080p-5s30
480p-10s12
720p-10s24
1080p-10s60

Code examples

curl -X POST https://api.apiframe.ai/v2/videos/generate \
  -H "X-API-Key: afk_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "a premium cinematic product reveal with slow camera motion",
    "model": "seedance-1-pro",
    "seedanceParams": {
      "duration": 5,
      "resolution": "1080p",
      "aspect_ratio": "16:9"
    }
  }'
import requests

response = requests.post(
    "https://api.apiframe.ai/v2/videos/generate",
    headers={
        "X-API-Key": "afk_your_api_key_here",
        "Content-Type": "application/json",
    },
    json={
        "prompt": "a premium cinematic product reveal with slow camera motion",
        "model": "seedance-1-pro",
        "seedanceParams": {
            "duration": 5,
            "resolution": "1080p",
            "aspect_ratio": "16:9",
        },
    },
)
print(response.json())
const response = await fetch("https://api.apiframe.ai/v2/videos/generate", {
  method: "POST",
  headers: {
    "X-API-Key": "afk_your_api_key_here",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    prompt: "a premium cinematic product reveal with slow camera motion",
    model: "seedance-1-pro",
    seedanceParams: {
      duration: 5,
      resolution: "1080p",
      aspect_ratio: "16:9",
    },
  }),
});
console.log(await response.json());

Try it

POST/v2/videos/generateTry it

On this page