curl --request POST \
--url https://api.modellix.ai/api/v1/bytedance/seedream-5.0-lite-edit/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "preserve composition, convert to watercolor style with rich texture and soft shadows",
"image": [
"https://example.com/input-1.jpg",
"https://example.com/input-2.jpg"
]
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-abc123",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
}
}
}ByteDance Seedream 5.0 Lite Edit image-to-image model supporting single-image editing, multi-image fusion, and configurable output format.
curl --request POST \
--url https://api.modellix.ai/api/v1/bytedance/seedream-5.0-lite-edit/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "preserve composition, convert to watercolor style with rich texture and soft shadows",
"image": [
"https://example.com/input-1.jpg",
"https://example.com/input-2.jpg"
]
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-abc123",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
}
}
}Documentation Index
Fetch the complete documentation index at: https://docs.modellix.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API Key authentication. Format: Bearer YOUR_API_KEY.
Body
Image editing instruction, supports Chinese and English
1 - 600"Convert this image to a watercolor painting style"
Input image array (1-14 images). Each image must be <= 10 MB. Supported formats: JPEG, PNG, WEBP, BMP, TIFF, GIF.
1 - 14 elements[
"https://example.com/input-1.jpg",
"https://example.com/input-2.jpg"
]Image size in format 'widthxheight'. Seedream 5.0 Lite supports custom 2K/3K resolutions.
"2304x1728"
Batch generation mode. 'auto': model-controlled batch generation, 'disabled': generate single image only.
auto, disabled "auto"
Maximum number of images for batch generation. This value is an upper limit, actual generated count may be less.
1 <= x <= 153
Prompt optimization mode. Only 'standard' mode is supported.
standard "standard"
Output image format. Supported values: 'jpeg' and 'png'.
jpeg, png "png"