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-4s9
720p-4s18
1080p-4s41
480p-8s17
720p-8s36
1080p-8s82
480p-12s26
720p-12s54
1080p-12s123
480p-4s-audio17
720p-4s-audio36
1080p-4s-audio82
480p-8s-audio34
720p-8s-audio71
1080p-8s-audio164
480p-12s-audio51
720p-12s-audio107
1080p-12s-audio245

Example result

Once the job is COMPLETED, the result object on GET /v2/jobs/:id looks like:

{
  "videoUrl": "https://cdn2.apiframe.ai/videos/b2c3d4e5-f6a7-8901-bcde-f23456789012.mp4"
}

See Result format for field details.

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