Seedream 4.5 is ByteDance's image generation model on BytePlus ModelArk, released as an upgrade to Seedream 4.0.
- Input
- text image
- Output
- image
- Price
- $0.04/image
Price in context
Where the price sits among 8 comparable models
The bar shows how this model’s price compares with every other model of the same kind on Synthorai. The cheapest and the most expensive are named at each end. These are base rates; batch, region and cache-write discounts are on the pricing page.
Specs & limits
Image
| Sizes | 2K, 4K |
|---|---|
| Input modes | text-to-image, single-image image-to-image, multi-reference image-to-image (2-14 refs), batch/sequential image sets |
| Format | jpeg |
| Images per request | 15 |
| Image capabilities |
|
Model
| Modalities | text + image → image |
|---|
- Released December 2025 (version date 251128 encoded in the model id)
- no dedicated docs model page (console-only detail)
One prompt, measured through the gateway
Seedream 4.5
Model returned 2048×2048 latency 9 s
One prompt, one request per model, no retries and no cherry-picking - the first result each model returned. Neither size nor duration was pinned: each model used its own default, because a request shaped to fit all of them would flatter none. Files here are re-encoded for the web, so judge composition and prompt adherence, not compression.
Use Seedream 4.5 in 30 seconds
OpenAI-compatible: swap the base_url, keep your SDK. POST /v1/images/generations
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.images.generate(
model="seedream-4-5-251128",
prompt="a watercolor lighthouse at dawn",
size="1024x1024",
)
print(resp.data[0].b64_json[:80])import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.images.generate({
model: "seedream-4-5-251128",
prompt: "a watercolor lighthouse at dawn",
size: "1024x1024",
});
console.log(resp.data?.[0]?.b64_json?.slice(0, 80));curl https://synthorai.io/v1/images/generations \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "seedream-4-5-251128",
"prompt": "a watercolor lighthouse at dawn",
"size": "1024x1024"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Images.Generate(context.TODO(), openai.ImageGenerateParams{
Model: "seedream-4-5-251128",
Prompt: "a watercolor lighthouse at dawn",
Size: "1024x1024",
})
fmt.Println(resp.Data[0].B64JSON[:80])
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.images.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ImagesResponse resp = client.images().generate(
ImageGenerateParams.builder()
.model("seedream-4-5-251128")
.prompt("a watercolor lighthouse at dawn")
.size("1024x1024")
.build());
System.out.println(resp.data().orElseThrow().get(0).b64Json().orElseThrow().substring(0, 80));About Seedream 4.5
- The official release notes cite significant improvements in editing consistency, such as preserving subject details and lighting or color tones, plus portrait enhancement and small-text generation; BytePlus classifies the release as a version update rather than a new model, and those three areas are the whole of its officially claimed advance over 4.0.
- It supports text-to-image, single and multi-reference image-to-image with up to 14 reference images, batch image generation, streaming output, and 2K or 4K results, focusing on high-quality standard-mode generation.
- That focus is literal: 4.5 drops both the 1K tier and the faster prompt-optimization mode 4.0 offers, so the minimum output rises to roughly 2560x1440 and every request runs in standard mode.
- The batch rule carries over, with reference images plus generated images capped at fifteen, and output remains JPEG with no format choice.
- BytePlus's prompt guide adds two practical habits for this generation: wrap literal strings in double quotation marks so they render as written, and mark up a reference image with arrows or boxes to point an edit at a region.
- It also notes that 4.0 and 4.5 need less description than earlier versions to hit the intended image.
- Synthorai makes it available through the OpenAI-compatible image generation endpoint.
FAQ
Is the Seedream 4.5 API free to try?
Yes: new accounts get 10 trial calls and up to $1 in free credit, no card required. That's enough to try Seedream 4.5 against your real workload before adding a payment method.
What is Seedream 4.5 best at?
Editing consistency preserving details and lighting; portrait enhancement and small-text generation; up to 14 reference images, 2K or 4K. See the About section for the full picture from the vendor's own release notes.
How much does Seedream 4.5 cost?
Seedream 4.5 costs $0.04 per generated image on Synthorai: pay-as-you-go, no platform markup, no subscription.
How do I generate images with the Seedream 4.5 API?
POST to /v1/images/generations on Synthorai with model="seedream-4-5-251128". It follows the OpenAI images API shape, so no vendor SDK is needed. Supported sizes: 2K, 4K.
How do I get access to Seedream 4.5?
Point your existing OpenAI SDK at base_url="https://synthorai.io/v1", set model="seedream-4-5-251128", and you're done. One API key covers every model on the gateway.
Related models
Compare
Every value on this page is transcribed from the vendor's own documentation, linked above, and carries the date it was checked. Prices are compared across the catalogue; specification values that vendors define differently are shown with the difference stated rather than charted. Nothing here is measured by us, and nothing is scored.