Seedream 4.5: Upgraded Bytedance image model with stronger spatial understanding and world knowledge
One POST request. Get the result back directly — as an image, video, or JSON depending on the tool.
curl -X POST https://apiai.me/api/workflow/seedream-4.5 \
-H "X-API-Key: YOUR_API_KEY" \
-F "image=@input.jpg" \
-F "aspect_ratio=match_input_image" \
-F "safety_off=false" \
-F "height=2048" \
-F "max_images=@image.jpg" \
-F "prompt=VALUE" \
-F "sequential_image_generation=@image.jpg" \
-F "size=2K" \
-F "width=2048"
--output result.png
Test this tool visually before writing any code. Upload an image, set parameters, and see the result live. When it looks right, copy the auto-generated curl command and paste it into your app.
Process hundreds of images at once without writing a loop. Upload a CSV with one row per item, set your parameters, and download the results as a ZIP when they're done.
| Name | Required | Description | Default / Options |
|---|---|---|---|
aspect_ratio |
optional | Image aspect ratio. Only used when size is not 'custom'. Use 'match_input_image' to automatically match the input image's aspect ratio. | match_input_image1:14:33:44:55:416:99:163:22:321:99:21
|
safety_off |
optional | Disable the safety checker for generated images. When enabled, input moderation is relaxed to only block illegal content (CSAM). Use responsibly. | false
|
height |
optional | Custom image height (only used when size='custom'). Range: 1024-4096 pixels. | 2048
|
max_images |
optional | Maximum number of images to generate when sequential_image_generation='auto'. Range: 1-15. Total images (input + generated) cannot exceed 15. | 1
|
prompt |
required | Text prompt for image generation. Maximum 4000 characters. BytePlus recommends keeping prompts under 600 English words for best results. | — |
sequential_image_generation |
optional | Group image generation mode. 'disabled' generates a single image. 'auto' lets the model decide whether to generate multiple related images (e.g., story scenes, character variations). | disabledauto
|
size |
optional | Image resolution: 2K (2048px), 4K (4096px), or 'custom' for specific dimensions. Note: 1K resolution is not supported in Seedream 4.5. | 2K4Kcustom
|
width |
optional | Custom image width (only used when size='custom'). Range: 1024-4096 pixels. | 2048
|
Get an API key, test Seedream 4.5 in the dashboard, and copy the curl command.