ApiframeApiframe Docs
Video GenerationSeedance

Seedance 1 Pro Fast

Faster ByteDance Seedance v1 video generation with normalized duration and resolution controls.

Use in Apiframe Studio

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

Seedance 1 Pro Fast is optimized for quicker generations while keeping 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.seedintegerOptional random seed for reproducible generations
seedanceParams.camera_fixedbooleanfalseLocks the camera for more static motion

Credit cost

VariantCredits
480p-5s4
720p-5s8
1080p-5s15
480p-10s8
720p-10s16
1080p-10s30

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 fast cinematic drone pass over a futuristic city",
    "model": "seedance-1-pro-fast",
    "seedanceParams": {
      "duration": 5,
      "resolution": "720p",
      "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 fast cinematic drone pass over a futuristic city",
        "model": "seedance-1-pro-fast",
        "seedanceParams": {
            "duration": 5,
            "resolution": "720p",
            "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 fast cinematic drone pass over a futuristic city",
    model: "seedance-1-pro-fast",
    seedanceParams: {
      duration: 5,
      resolution: "720p",
      aspect_ratio: "16:9",
    },
  }),
});
console.log(await response.json());

Try it

POST/v2/videos/generateTry it

On this page