curl --request POST \
--url https://api.maxapi.io/api/v1/task/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "jimeng-4.5",
"input": {
"prompt": "Transform to watercolor style",
"images": ["https://example.com/photo.jpg"]
}
}'
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "c3d4e5f6-a7b8-9012-cdef-234567890abc"
}
}
Jimeng Image-to-Image — Generate new images 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": "jimeng-4.5",
"input": {
"prompt": "Transform to watercolor style",
"images": ["https://example.com/photo.jpg"]
}
}'
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "c3d4e5f6-a7b8-9012-cdef-234567890abc"
}
}
input contains an images field, it automatically switches to image-to-image mode.
jimeng-4.5. Uses the same models as Text to Image.Hide properties
{"url": "https://..."} object.1:1, 4:3, 3:4, 16:9, 9:16, 3:2, 2:3, 21:9.1k, 2k, 4k.curl --request POST \
--url https://api.maxapi.io/api/v1/task/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "jimeng-4.5",
"input": {
"prompt": "Transform to watercolor style",
"images": ["https://example.com/photo.jpg"]
}
}'
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "c3d4e5f6-a7b8-9012-cdef-234567890abc"
}
}
{
"code": 0,
"msg": "ok",
"data": {
"taskId": "c3d4e5f6-a7b8-9012-cdef-234567890abc",
"status": "SUCCESS",
"input": {
"model": "jimeng-4.5",
"prompt": "将这张照片变成水彩画风格",
"images": ["https://example.com/photo.jpg"],
"resolution": "2k"
},
"result": {
"type": "image",
"urls": [
"https://p3-dreamina-sign.byteimg.com/result1.png",
"https://p3-dreamina-sign.byteimg.com/result2.png"
]
},
"created_at": "2026-02-10T22:00:00.000000Z",
"updated_at": "2026-02-10T22:00:15.000000Z"
}
}