ApiframeApiframe Docs
Video GenerationSeedance

Seedance 1.5 Pro

ByteDance Seedance 1.5 Pro with normalized duration, resolution, and optional audio generation.

Use in Apiframe Studio

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

Seedance 1.5 Pro supports text-to-video and image-to-video generation with optional synchronized audio.

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

Model-specific parameters

ParameterTypeDefaultDescription
seedanceParams.durationinteger8Video duration in seconds: 4, 8, or 12
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", or "9:16"
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
seedanceParams.generate_audiobooleantrueEnables synchronized audio generation; set false to use the lower-cost silent variant

Credit cost

VariantCredits
480p-4s4
720p-4s8
1080p-4s20
480p-8s8
720p-8s16
1080p-8s40
480p-12s12
720p-12s24
1080p-12s60
480p-4s-audio8
720p-4s-audio16
1080p-4s-audio40
480p-8s-audio16
720p-8s-audio32
1080p-8s-audio80
480p-12s-audio24
720p-12s-audio48
1080p-12s-audio120

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 close-up monologue in a rainy neon alley with ambient street audio",
    "model": "seedance-1.5-pro",
    "seedanceParams": {
      "duration": 8,
      "resolution": "720p",
      "aspect_ratio": "16:9",
      "generate_audio": true
    }
  }'
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 close-up monologue in a rainy neon alley with ambient street audio",
        "model": "seedance-1.5-pro",
        "seedanceParams": {
            "duration": 8,
            "resolution": "720p",
            "aspect_ratio": "16:9",
            "generate_audio": True,
        },
    },
)
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 close-up monologue in a rainy neon alley with ambient street audio",
    model: "seedance-1.5-pro",
    seedanceParams: {
      duration: 8,
      resolution: "720p",
      aspect_ratio: "16:9",
      generate_audio: true,
    },
  }),
});
console.log(await response.json());

Try it

POST/v2/videos/generateTry it

On this page