Skip to main content
Seedream 4.5 Image-to-Image is an image-to-image model from ByteDance’s Seedream series, available through the Starrise AI API.

Key Capabilities

  • Image-to-image — Generate images using reference images and text prompts
  • Sequential generation — Generate multiple images in a single request
  • Custom size — Flexible output dimensions
  • Watermark control — Optional watermark and logo configuration

Quick Example

curl https://ai.alad.com/v1/images/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao-seedream-4-5-251128",
    "prompt": "Generate images of a girl and a cow plush toy happily riding a roller coaster, covering morning, noon, and night",
    "image": ["https://example.com/ref1.png", "https://example.com/ref2.png"],
    "sequential_image_generation": "auto",
    "sequential_image_generation_options": {
      "max_images": 3
    },
    "size": "2K",
    "watermark": false
  }'

Parameters

ParameterTypeRequiredDescription
modelstringYesMust be doubao-seedream-4-5-251128
promptstringYesImage generation prompt
imagearrayYesArray of reference image URLs
sequential_image_generationstringNoSet to auto to enable batch generation
sequential_image_generation_optionsobjectNoOptions: max_images (int)
sizestringNoOutput image size, e.g. 1024x1024, 2K
watermarkbooleanNoDefault false
seedintegerNoRandom seed
logo_infoobjectNoLogo config: add_logo, position, language, opacity

API Reference

View the interactive API Playground for Seedream 4.5 Image-to-Image.