Theme
seedance-1-5-pro
POST
https://www.kkiai.com/volc/v1/contents/generations/tasks
Request Parameters
Authorization
Add the Authorization parameter to the Header. Its value is the Token concatenated after Bearer.
Example: Authorization: Bearer ********************
Body Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | Required | The ID of the model you need to call |
content | array[object] | Required | Information input to the model for video generation, supporting text and image information. |
└ type | string | Required | |
└ text | string | Optional | Text content input to the model, describing the expected video to be generated |
└ image_url | object | Required | |
└ role | string | Required |
Request Example
json
{
"model": "doubao-seedance-1-5-pro-251215",
"content": [
{
"type": "text",
"text": "The girl is holding a fox. She opens her eyes and looks gently at the camera, while the fox cuddles her in a friendly way. The camera slowly pulls back, the girl's hair moves in the wind, and the sound of the wind can be heard."
},
{
"type": "image_url",
"image_url": {
"url": "https://ark-project.tos-cn-beijing.volces.com/doc_image/i2v_foxrgirl.png"
}
}
],
"ratio": "adaptive",
"duration": 4,
"watermark": false
}cURL Example
bash
curl --location --request POST 'https://www.kkiai.com/volc/v1/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": "The girl is holding a fox. She opens her eyes and looks gently at the camera, while the fox cuddles her in a friendly way. The camera slowly pulls back, the girl's hair moves in the wind, and the sound of the wind can be heard."
},
{
"type": "image_url",
"image_url": {
"url": "https://ark-project.tos-cn-beijing.volces.com/doc_image/i2v_foxrgirl.png"
}
}
],
"ratio": "adaptive",
"duration": 4,
"watermark": false
}'Response
🟢 200 Success
Response Body
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Required | |
status | string | Required |
Response Example
json
{
"id": "cgt-20250918170228-dw9rb",
"status": "submitted"
}