ByteDance's flagship Seedream 5.0 Pro image generation model, with built-in reasoning, precise instruction following, and multi-reference support for up to 10 images. Offers 1K and 2K resolution output with higher fidelity than Seedream 5 Lite.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedream-5-pro",
"input": {
"prompt": "Combine these three sneaker reference photos into a single studio product shot on a seamless white background, consistent lighting from the upper left, and a soft shadow beneath each shoe",
"image_input": [
"https://example.com/sneaker-1.jpg",
"https://example.com/sneaker-2.jpg",
"https://example.com/sneaker-3.jpg"
],
"size": "2K",
"aspect_ratio": "1:1"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text prompt for image generation. Maximum 4000 characters. BytePlus recommends keeping prompts under 600 English words for best results. |
image_input | array | No | [] | Input image(s) for image-to-image generation. List of 1-10 reference images for single or multi-reference generation. |
size | string | No | 2K | Image resolution: 1K (~2 megapixels) or 2K (~4 megapixels). 1K2K |
aspect_ratio | string | No | match_input_image | Image aspect ratio. Use 'match_input_image' to automatically match the input image's aspect ratio. match_input_image1:14:33:416:99:163:22:321:9 |
output_format | string | No | png | Output image format. pngjpeg |
There are 3 ways to provide files for the image_input parameter:
Attach files directly to POST /v1/predictions/upload. No separate upload step needed.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=bytedance/seedream-5-pro" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image_input=@your_file.png"Pass a publicly accessible URL directly. You can also use file_url from the Storage API.
{
"model": "bytedance/seedream-5-pro",
"input": {
"prompt": "your prompt here",
"image_input": ["https://example.com/image.jpg"]
}
}Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
Combine multiple product reference photos into a single cohesive studio shot
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedream-5-pro",
"input": {
"prompt": "Combine these three sneaker reference photos into a single studio product shot on a seamless white background, consistent lighting from the upper left, and a soft shadow beneath each shoe",
"image_input": [
"https://example.com/sneaker-1.jpg",
"https://example.com/sneaker-2.jpg",
"https://example.com/sneaker-3.jpg"
],
"size": "2K",
"aspect_ratio": "1:1"
}
}'Text-only prompt generating a wide banner at 2K resolution
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedream-5-pro",
"input": {
"prompt": "A minimalist tech product launch banner featuring sleek wireless earbuds floating above a reflective dark surface, dramatic rim lighting, deep navy background with a subtle gradient",
"size": "2K",
"aspect_ratio": "21:9",
"output_format": "png"
}
}'POST /v1/predictions