Skip to main content

Try Seedream 5.0 Lite in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: bytedance-seedream-5-lite ByteDance Seedream 5.0 Lite generates images from a text prompt, with single-image and multi-reference image-to-image editing. Supports 2K, 3K, and 4K output resolutions, batch generation, and PNG or JPEG output.

Example request

Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
See the image editing reference for more details.
curl -X POST https://hub.oxen.ai/api/ai/images/edit \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OXEN_API_KEY" \
  -d '{
  "model": "bytedance-seedream-5-lite",
  "prompt": "<prompt>"
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/bytedance-seedream-5-lite

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstringText prompt for image generation.

Optional parameters

FieldTypeDefaultDescription
input_imagestringOptional URL of a single reference image for image-to-image generation. Format: uri.
input_imagesarray<string>Optional list of reference image URLs for multi-reference editing. Up to 14 images.
sizestring"2K"Image resolution. One of: 2K, 3K, 4K.
output_formatstring"png"Output image format. One of: png, jpeg.
watermarkbooleanfalseWhether to add an ‘AI generated’ watermark.