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": "Blow out candles",
"imageUrls": ["https://example.com/photo.jpg"]
}
}'
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
Jimeng / Seedance Image-to-Video — Generate videos based on reference images
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": "Blow out candles",
"imageUrls": ["https://example.com/photo.jpg"]
}
}'
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
imageUrls, different generation modes are automatically selected based on the number of images. Applicable to all seedance-* and jimeng-video-* models.
seedance-2.0-pro, jimeng-video-3.5-pro.Hide properties
@1, @2, @3 to reference the corresponding images by position.1:1, 4:3, 3:4, 16:9, 9:16.480p, 720p, 1080p.5, 10, 15.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": "Blow out candles",
"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 in the prompt to reference the corresponding images by position.
{
"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"
}
}