Bytedance Seedream V5.0 Flash Edit API Documentation
Playground
Try it on WaveSpeedAI!Seedream V5.0 Flash Edit by ByteDance edits and generates images from single-image or multi-reference inputs faster and at lower cost than Seedream V5.0 Pro Edit, supporting up to 10 reference images, aspect ratio selection, and 1K / 1.5K / 2K output at one price. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
Seedream V5.0 Flash Edit is the fast, lower-cost tier of Seedream 5.0 image editing. It shares Seedream V5.0 Pro Edit’s capabilities — interactive precision editing, multi-reference control, and native multilingual text — and returns edits faster at a lower price.
Why Choose This?
-
Multi-image reference editing
Use up to 10 reference images for complex edits, compositions, and visual guidance. -
Natural language editing
Describe the desired edit in plain text and let the model transform the input images accordingly. -
Pro capabilities, Flash speed
Same editing capability set as Seedream V5.0 Pro Edit, tuned for faster turnaround. -
One price for every resolution and input count
1k,1.5k, and2kcost the same, and reference images are not billed separately. -
Standard output formats
Generate edited images injpegorpngformat.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the desired edit. |
| images | Yes | Reference image URLs or Base64 strings. Supports up to 10 images. |
| aspect_ratio | No | Output aspect ratio. |
| resolution | No | Output resolution tier: 1k, 1.5k, or 2k. |
| output_format | No | Output format: jpeg or png. |
How to Use
- Upload reference images — Provide one or more images to guide the edit.
- Write your prompt — Describe what should change and what should stay the same.
- Choose aspect ratio — Select a supported aspect ratio, or leave it empty to follow the closest supported ratio from the first input image.
- Choose resolution —
1k,1.5k, or2k; the price is the same. - Choose output format — Select
jpegorpng. - Submit — Generate the final edited image.
Pricing
A flat $0.027 per edit, regardless of resolution or the number of reference images.
| Resolution | Input Images | Cost |
|---|---|---|
| 1k | 1 | $0.027 |
| 1.5k | 10 | $0.027 |
| 2k | 10 | $0.027 |
Best Use Cases
- Single-image editing — Edit one source image with natural-language instructions.
- Multi-reference composition — Use multiple images to guide complex edits and visual combinations.
- Product image editing — Refine product visuals, backgrounds, styles, and presentation.
- High-volume edit pipelines — Apply the same edit direction across large image sets.
- Creative iteration — Test different edit directions quickly using the same reference images.
Pro Tips
- Use clear prompts that describe both what should change and what should remain unchanged.
- Put the main subject in the first reference image and refer to others by position (“the jacket from image 2”).
- Leave
aspect_ratioempty when you want the output to follow the closest supported ratio from the first input image. - Since every resolution costs the same, pick
2kwhen you need a higher-resolution result. - Keep reference images clear, relevant, and visually consistent with the desired edit.
Related Models
- Seedream V5.0 Flash — Generate images from text prompts.
- Seedream V5.0 Pro Edit — Higher-quality Seedream 5.0 image editing.
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'
{
"prompt": "A cinematic ocean wave at sunrise, highly detailed",
"images": [
"https://interactive-examples.mdn.mozilla.net/media/cc0-images/painted-hand-298-332.jpg"
],
"aspect_ratio": "1:1",
"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-flash/edit" \
-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="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"
# 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|deleted) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
*) sleep 2 ;;
esac
doneParameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | The positive prompt for the generation. | |
| images | array<string> | Yes | - | 0 ~ 10 items | The images to edit. A maximum of 10 reference images can be uploaded. |
| aspect_ratio | string | No | - | 1:1, 1:2, 2:1, 1:3, 3:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 9:21, 21:9 | The aspect ratio of the generated image. Leave empty to automatically use the closest supported aspect ratio based on the first input image. |
| resolution | string | No | 1k | 1k, 1.5k, 2k | The output resolution tier. All tiers are billed at the same price. |
| output_format | string | No | jpeg | jpeg, png | The format of the output image. |
| enable_sync_mode | boolean | No | false | - | If set to `true`, the request attempts to wait for the generated result and return outputs in the same response. If the result is not ready within the sync wait window, the API can return a timeout body while the task continues processing. This option is only available via the API and is supported only by some models. |
| enable_base64_output | boolean | No | false | - | If set to `true`, the prediction's `output` strings are returned as **naked base64** (no `data:<mime>;base64,` prefix). When `false` (default), outputs are returned as URLs pointing to our CDN. |
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.status | string | Task status. completed is successful; failed, cancelled, timeout, and deleted are failure terminal statuses. |
| 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.status | string | Status: completed is successful; failed, cancelled, timeout, and deleted are failure terminal statuses |
| 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 |