Browse ModelsBytedanceBytedance Seededit V3

Bytedance Seededit V3

Bytedance Seededit V3

Playground

Try it on WavespeedAI!

SeedEdit 3.0 by Bytedance enables prompt-guided image editing for precise object, scene, and layout changes without disrupting composition. Ready-to-use REST API, high performance, no coldstarts, affordable pricing.

Features

SeedEdit v3 — bytedance/seededit-v3

SeedEdit v3 is a prompt-based image editing model for fast, high-quality transformations. Provide a source image and a short instruction, and the model performs targeted edits—such as changing hair, clothing, colors, backgrounds, or adding/removing elements—while keeping the overall composition and identity stable.

Key capabilities

  • Prompt-driven image editing from a single input image
  • Strong preservation of subject identity and scene structure for everyday edits
  • Works well for localized edits (hair, face details, clothing) and global adjustments (color/lighting)
  • Efficient for rapid iteration with controllable randomness via seed

Use cases

  • Portrait edits: hair color/style changes, light makeup tweaks, accessory edits
  • E-commerce variants: recolor outfits/products, background cleanup, consistent product shots
  • Marketing creatives: quick visual iterations (color mood, props, text-free adjustments)
  • Photo cleanup: remove small distractions, fix minor inconsistencies, improve overall clarity
  • Content localization: adapt visual details (e.g., wardrobe color/style) while keeping the same subject

Pricing

OutputPrice
Per image$0.027

Inputs

  • image (required): the source image to edit
  • prompt (required): the edit instruction

Parameters

  • prompt: what to change (and optionally what to keep)
  • image: input image (upload or URL)
  • guidance_scale: how strongly the edit follows the prompt (higher = stronger edit)
  • seed: random seed (-1 for random; fixed value for reproducible results)

Prompting guide

For clean edits, be explicit about what must stay the same:

Template: Keep [identity/pose/background]. Change [target]. Maintain [lighting/style realism].

Example prompts

  • Keep the face and pose unchanged. Change the hair to short, curly, rainbow-colored hair. Keep natural lighting and realistic texture.
  • Keep the subject identity and background unchanged. Change the jacket color to black and add subtle fabric texture.
  • Remove the object in the background and keep the subject sharp and unchanged.

Authentication

For authentication details, please refer to the Authentication Guide.

API Endpoints

Submit Task & Query Result


# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/bytedance/seededit-v3" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
    "guidance_scale": 0.5,
    "seed": -1,
    "enable_base64_output": false
}'

# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"

Parameters

Task Submission Parameters

Request Parameters

ParameterTypeRequiredDefaultRangeDescription
promptstringYes-The positive prompt for the generation.
imagestringYes-The image to edit, can be a URL or base64 encoded image.
guidance_scalenumberNo0.50.0 ~ 1.0The guidance scale to use for the generation.
seedintegerNo-1-1 ~ 2147483647The random seed to use for the generation. -1 means a random seed will be used.
enable_base64_outputbooleanNofalse-If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API.

Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
data.idstringUnique identifier for the prediction, Task Id
data.modelstringModel ID used for the prediction
data.outputsarrayArray of URLs to the generated content (empty when status is not completed)
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.has_nsfw_contentsarrayArray of boolean values indicating NSFW detection for each output
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds

Result Request Parameters

ParameterTypeRequiredDefaultDescription
idstringYes-Task ID

Result Response Parameters

ParameterTypeDescription
codeintegerHTTP status code (e.g., 200 for success)
messagestringStatus message (e.g., “success”)
dataobjectThe prediction data object containing all details
data.idstringUnique identifier for the prediction, the ID of the prediction to get
data.modelstringModel ID used for the prediction
data.outputsstringArray of URLs to the generated content (empty when status is not completed).
data.urlsobjectObject containing related API endpoints
data.urls.getstringURL to retrieve the prediction result
data.statusstringStatus of the task: created, processing, completed, or failed
data.created_atstringISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”)
data.errorstringError message (empty if no error occurred)
data.timingsobjectObject containing timing details
data.timings.inferenceintegerInference time in milliseconds
© 2025 WaveSpeedAI. All rights reserved.