curl --request POST \
--url https://api.maxapi.io/api/v1/task/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance-2.0-pro",
"input": {
"prompt": "吹灭蜡烛",
"imageUrls": ["https://example.com/photo.jpg"]
}
}'
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
Jimeng / Seedance 图生视频 — 基于参考图片生成视频
curl --request POST \
--url https://api.maxapi.io/api/v1/task/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance-2.0-pro",
"input": {
"prompt": "吹灭蜡烛",
"imageUrls": ["https://example.com/photo.jpg"]
}
}'
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
imageUrls,根据图片数量自动选择不同的生成模式。适用于所有 seedance-* 和 jimeng-video-* 模型。
seedance-2.0-pro、jimeng-video-3.5-pro。curl --request POST \
--url https://api.maxapi.io/api/v1/task/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance-2.0-pro",
"input": {
"prompt": "吹灭蜡烛",
"imageUrls": ["https://example.com/photo.jpg"]
}
}'
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
imageUrls 中的图片数量,自动选择不同模式:
{
"model": "seedance-2.0-pro",
"input": {
"prompt": "吹灭蜡烛",
"imageUrls": ["https://assets.movart.ai/landingpage/dog.webp"]
}
}
{
"model": "seedance-2.0-pro",
"input": {
"prompt": "变身",
"imageUrls": [
"https://assets.movart.ai/3D-Cartoon.jpg",
"https://assets.movart.ai/landingpage/dog.webp"
]
}
}
@1、@2、@3 引用对应位置的图片。
{
"model": "seedance-2.0",
"input": {
"prompt": "@1 和 @2 在聊天,@3 在旁边看",
"imageUrls": [
"https://assets.movart.ai/3D-Cartoon.jpg",
"https://assets.movart.ai/landingpage/dog.webp",
"https://assets.movart.ai/landingpage/dog.webp"
]
}
}
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "SUCCESS",
"input": {
"model": "seedance-2.0-pro",
"prompt": "吹灭蜡烛",
"imageUrls": [
"https://assets.movart.ai/landingpage/dog.webp"
]
},
"result": {
"type": "video",
"urls": [
"https://v9-dreamnia.jimeng.com/video/tos/cn/video_example.mp4"
]
},
"created_at": "2026-02-10T23:00:00.000000Z",
"updated_at": "2026-02-10T23:03:25.000000Z"
}
}