Bytedance Seedream V5.0 Pro Layer Decomposition API Documentation
Playground
Try it on WaveSpeedAI!Seedream V5.0 Pro Layer Decomposition separates a single image into a base image and transparent layers, enabling flexible compositing, image editing, asset extraction, and layered design workflows. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
Seedream V5.0 Pro Layer Decomposition separates a single input image into one base image and transparent image layers for compositing, design, and editing workflows. It is useful for breaking a flat image into editable visual components that can be reused, rearranged, or refined in downstream creative tools.
Why Choose This?
-
Layered image decomposition
Separate one image into a base image and multiple transparent layers. -
Editing-ready outputs
Use the decomposed layers for compositing, retouching, layout design, and creative editing. -
Prompt-guided layer control
Optionally describe the desired layers, targets, objects, bounding boxes, or grouping behavior. -
Automatic element detection
When no prompt is provided, the model can identify the main elements automatically. -
Flexible output sizes
Chooseauto,1k,1.5k, or2kdepending on your workflow needs. -
Transparent PNG layers
Extracted layers are returned as PNG files with transparency for easier reuse.
Parameters
| Parameter | Required | Description |
|---|---|---|
| image | Yes | A single PNG or JPEG image to decompose. |
| prompt | No | Optional instruction describing the desired layers, targets, objects, bounding boxes, or grouping. If omitted, the model identifies the main elements automatically. |
| size | No | Output size: auto, 1k, 1.5k, or 2k. |
| output_format | No | Output format for the base image: jpeg or png. Transparent layers are always returned as PNG. |
How to Use
- Upload an image — Provide a single PNG or JPEG image for decomposition.
- Add a prompt optional — Describe the objects, groups, targets, or layer structure you want.
- Choose size — Select
auto,1k,1.5k, or2k. - Choose output format — Select
jpegorpngfor the base image. - Configure prompt optimization optional — Use
optimize_prompt_optionswhen you wantstandardorfastprompt optimization. - Submit — Generate the base image and transparent layer outputs.
Pricing
Pricing is based on the selected size.
| Size | Price |
|---|---|
| 1k | $0.765 |
| 1.5k | $0.765 |
| 2k | $1.53 |
Best Use Cases
- Compositing workflows — Separate foreground objects and background elements for layered editing.
- Design production — Convert flat images into editable visual components.
- Marketing asset preparation — Extract reusable objects, people, products, or scene elements from campaign images.
- Creative editing — Rearrange, restyle, replace, or refine isolated image layers.
- Layout workflows — Prepare clean visual parts for presentations, ads, thumbnails, and design systems.
- Post-production — Use decomposed layers for downstream image editing, animation, or visual effects workflows.
Pro Tips
- Use a clear image with distinct foreground, subject, and background regions.
- Add a prompt when you need specific objects, groupings, or layer order.
- Keep the prompt focused on what should become separate layers.
- Choose
2kwhen higher-resolution layer outputs are needed. - Use
pngfor the base image when you want a cleaner image-editing workflow. - Avoid cluttered scenes when you need precise layer separation.
Related Models
- Seedream V5.0 Pro — Generate high-quality images from text prompts.
- Seedream V5.0 Pro Edit — Edit images with text instructions and reference images.
- Seedream V5.0 Lite — Lightweight image generation model.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
set -euo pipefail
export WAVESPEED_API_KEY="your-api-key"
REQUEST_BODY=$(cat <<'JSON'
{
"image": "https://interactive-examples.mdn.mozilla.net/media/cc0-images/painted-hand-298-332.jpg",
"resolution": "1k",
"output_format": "jpeg"
}
JSON
)
# 1. Submit the prediction.
SUBMIT_RESPONSE=$(curl --silent --show-error --fail-with-body \
-X POST "https://api.wavespeed.ai/api/v3/bytedance/seedream-v5.0-pro/layer-decomposition" \
-H "Authorization: Bearer ${WAVESPEED_API_KEY}" \
-H "Content-Type: application/json" \
-d "${REQUEST_BODY}")
TASK=$(printf '%s' "${SUBMIT_RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
PREDICTION_ID=$(printf '%s' "${TASK}" | jq -r '.id // empty')
if [ -z "${PREDICTION_ID}" ]; then
printf 'Submission response did not contain a prediction id
' >&2
exit 1
fi
RESULT_URL=$(printf '%s' "${TASK}" | jq -r '.urls.get // empty')
if [ -z "${RESULT_URL}" ]; then RESULT_URL="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"; fi
# 2. Poll until the prediction finishes.
while true; do
RESPONSE=$(curl --silent --show-error --fail-with-body \
"${RESULT_URL}" \
-H "Authorization: Bearer ${WAVESPEED_API_KEY}")
RESULT=$(printf '%s' "${RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
STATUS=$(printf '%s' "${RESULT}" | jq -r '.status // empty')
case "${STATUS}" in
completed) printf '%s\n' "${RESULT}" | jq '.outputs'; break ;;
failed|cancelled|timeout) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
created|processing) sleep 2 ;;
*) printf 'Unexpected status: %s
' "${STATUS}" >&2; exit 1 ;;
esac
doneParameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| image | string | Yes | - | The image to decompose into layers. | |
| prompt | string | No | - | The positive prompt for the generation. | |
| resolution | string | No | 1k | 1k, 1.5k, 2k | The size of the generated media in pixels (width*height). |
| output_format | string | No | jpeg | jpeg, png | The format of the output image. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Output values, usually URL strings; some models return text strings or structured result objects (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction |
| data.model | string | Model ID used for the prediction |
| data.outputs | array<string | object> | Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model. |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to poll for the prediction result |
| data.status | string | Status: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |