Skip to main content
POST
Seedance V1 Pro Fast
Generate videos from a source image using the bytedance/v1-pro-fast-image-to-video model.

Authentication

All API requests require a Bearer Token.

Create a Video Generation Task

Submit an image-to-video generation task using the endpoint below.

Request Body

string
required
Must be bytedance/v1-pro-fast-image-to-video.
object
required

Input Parameters

The input object contains the parameters used to generate the video.
string
required
Use prompt to describe the video you want to generate.Maximum length: 10000 characters.
string
required
The image_url must contain the URL of an uploaded image. The value must be an uploaded file URL, not the file content itself.Supported formats:
  • image/jpeg
  • image/png
  • image/webp
Maximum file size: 10 MB
string
Use duration to specify the length of the generated video.Supported values:
  • "5"
  • "10"
Default: "5"
string
Specify the resolution of the generated video.Supported values:
  • 720p
  • 1080p
Default: 720p

Example Request

Response

Successful Response

number
Response status code.
string
Response message. Contains the error description when the request fails.Example: success
object
required
The task data object containing task id.
string
required
The unique identifier for this task.Example: task_123456

Query Task Status

After submitting a task, use the unified query endpoint to check the task progress and retrieve the generated results.

Get Task Details

Check task status, monitor generation progress, and retrieve results.

Error Response

Response Codes