Creates a video generation task using ByteDance Seedance models. Supports text-to-video and image-to-video generation with configurable resolution, aspect ratio, duration, and audio.
Video generation is asynchronous. After creating a task, use the retrieve endpoint to poll for status until succeeded.
Request
Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired
Examples
{"model":"doubao-seedance-1-5-pro-251215","content":[{"type":"text","text":"A girl walking through a sunlit meadow, wind gently blowing her hair, cinematic lighting"}],"ratio":"16:9","duration":5,"watermark":false}
Request Code Samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl--location--request POST 'https://ai.tikhub.io/seedance/v3/contents/generations/tasks' \
--header'Authorization: Bearer <token>' \
--header'Content-Type: application/json' \
--data-raw'{
"model": "doubao-seedance-1-5-pro-251215",
"content": [
{
"type": "text",
"text": "A girl walking through a sunlit meadow, wind gently blowing her hair, cinematic lighting"
}
],
"ratio": "16:9",
"duration": 5,
"watermark": false
}'