Skip to content
Pricing
ByteDance

Seedream 5.0 API

Create images with Seedream 5.0 using text, images. Available resolutions: 2k / 3k / 4k. Try the current API settings, preview results and reuse your inputs.

Modalities
TextImageImage
Published
Input
Sign in to choose a key from your account.
Generation mode
Guide generation with the supported reference inputs below.
images0 / 10
JPEG / PNG / WEBP · ≤ 10 MB
Add a reference before running in reference mode.
Request preview
{
  "model": "seedream-5-0",
  "input": {
    "images": [],
    "resolution": "2k",
    "aspect_ratio": "auto",
    "output_format": "jpeg",
    "prompt": "A quiet mountain lake at sunrise, soft morning light."
  }
}
Output

Your next idea starts here.

Run the model to preview your result.

Seedream 5.0 pricing

Estimate one request, then choose a budget for your workflow.

UsageQuantityRateCost
1 request/ request
Cost per request

Public USD estimate. Your account rate and final recorded usage determine the actual charge.

View all specifications and prices

Start with a prompt

Choose a starter prompt, adapt it to your needs and run the model.

Product concept

An original cobalt ceramic perfume bottle on warm limestone, soft side lighting, clean composition, no logos.

Try this prompt ↗

Space and atmosphere

A modern coastal library at sunrise, soft light through linen curtains, calm water reflecting the architecture, cinematic composition.

Try this prompt ↗

Story scene

Tiny original robots crafting a paper lantern in a warm workshop, delicate tools, soft practical lighting and expressive characters.

Try this prompt ↗

What is Seedream 5.0?

Create images with Seedream 5.0 using text, images. Available resolutions: 2k / 3k / 4k. Try the current API settings, preview results and reuse your inputs.

Describe the subject, composition, lighting and intended use in your prompt. Add reference images when you want to guide the subject or visual style. Choose only the resolution, aspect ratio and output options listed in the current contract; inspect the result before reusing it in your product.

Seedream 5.0 specifications

Model IDseedream-5-0
ProviderByteDance
API/v1/tasks
Resolution2k / 3k / 4k
Aspect ratioauto / 1:1 / 4:3 / 3:4 / 16:9 / 9:16 / 3:2 / 2:3 / 21:9
Output formatpng / jpeg / webp
Reference imagesUp to 10

Before you generate

  • Use the current model ID and the API request shape shown on this page.
  • Generation is asynchronous. Keep the returned task ID to retrieve the result and billing status.
  • Only options supported by the current platform contract are exposed in Playground.

Compare Seedream 5.0 with related models

SpecificationSeedream 5.0GPT Image 2GPT Image 2.5 Flare
ProviderByteDanceOpenAIOpenAI
Input → outputTextImageImageTextImageImageTextImageImage
Selection basisCurrent modelBoth declare text, image inputBoth declare text, image input
Resolution2k / 3k / 4k1k / 2k / 4k1k / 2k / 4k
Reference images102020
Starting price$0.02 / request$0.03 / request

Choose by the input types, output settings and billing unit your workflow needs. Try the same prompt across models to compare results for your own use case.

BUILD WITH NEWROUTERS

Build with Seedream 5.0 in your app

Submit parameters through the Media Tasks API, then retrieve the result with the task ID. Image and video models keep their own input requirements.

  1. 01
    Get your API key

    Sign in and prepare a key with access to this model.

  2. 02
    Configure your request

    Choose parameters in Playground and copy the API example.

  3. 03
    Run and inspect the result

    Review status, outputs and charges in History.

API integration

POST /v1/tasks · Authorization: Bearer

cURL
curl 'https://newrouters.com/v1/tasks' \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $MODEL_API_KEY" \
  --data '{
  "model": "seedream-5-0",
  "input": {
    "images": [],
    "resolution": "2k",
    "aspect_ratio": "auto",
    "output_format": "jpeg",
    "prompt": "A quiet mountain lake at sunrise, soft morning light."
  }
}'
JavaScript
const response = await fetch("https://newrouters.com/v1/tasks", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "Authorization": "Bearer $MODEL_API_KEY"
  },
  body: JSON.stringify({
    "model": "seedream-5-0",
    "input": {
      "images": [],
      "resolution": "2k",
      "aspect_ratio": "auto",
      "output_format": "jpeg",
      "prompt": "A quiet mountain lake at sunrise, soft morning light."
    }
  })
});
if (!response.ok) throw new Error(await response.text());
console.log(await response.text());
Python
import json
import requests

response = requests.post(
    "https://newrouters.com/v1/tasks",
    headers=json.loads("{\"Content-Type\":\"application/json\",\"Authorization\":\"Bearer $MODEL_API_KEY\"}"),
    json=json.loads("{\"model\":\"seedream-5-0\",\"input\":{\"images\":[],\"resolution\":\"2k\",\"aspect_ratio\":\"auto\",\"output_format\":\"jpeg\",\"prompt\":\"A quiet mountain lake at sunrise, soft morning light.\"}}"),
    timeout=300,
)
response.raise_for_status()
print(response.text)

Poll the returned task ID for processing status and output assets.

curl -H "Authorization: Bearer $MODEL_API_KEY" "https://newrouters.com/v1/tasks/$TASK_ID"

Documentation: Authentication · Task status and results · Error handling

Full API parameters and combination constraints

Request parameters

ParameterTypeValues & constraints
imagesarrayDefault: []
prompt *string
resolutionJSON"2k" · "3k" · "4k"Default: "2k"
aspect_ratioJSON"auto" · "1:1" · "4:3" · "3:4" · "16:9" · "9:16" · "3:2" · "2:3" · "21:9"Default: "auto"
output_formatJSON"png" · "jpeg" · "webp"Default: "jpeg"
Full JSON Schema and combination constraints
{
  "type": "object",
  "required": [
    "prompt"
  ],
  "properties": {
    "images": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "default": [],
      "maxItems": 10
    },
    "prompt": {
      "type": "string",
      "maxLength": 100000,
      "minLength": 1
    },
    "resolution": {
      "enum": [
        "2k",
        "3k",
        "4k"
      ],
      "default": "2k"
    },
    "aspect_ratio": {
      "enum": [
        "auto",
        "1:1",
        "4:3",
        "3:4",
        "16:9",
        "9:16",
        "3:2",
        "2:3",
        "21:9"
      ],
      "default": "auto"
    },
    "output_format": {
      "enum": [
        "png",
        "jpeg",
        "webp"
      ],
      "default": "jpeg"
    }
  },
  "additionalProperties": false
}

Seedream 5.0 API · Common questions

Answers about pricing, inputs, integration and results.

How much does Seedream 5.0 cost?

Pricing is currently unavailable. Check the model status before submitting.

How do I get a NewRouters API key?

Sign in and open Quick Start above the workspace. Select or create a key with access to this model, then copy the request example.

Which inputs and output settings are supported?

Supported input fields: images, prompt, resolution, aspect_ratio, output_format. The parameter table includes allowed values and defaults.

Can I use reference images?

Yes. Use the reference mode to upload images or supply their URLs. The current limit is 10 images. Reference images guide a new generation; they do not imply mask editing support.

How do I retrieve results and past requests?

Save the returned task ID and query the task until it succeeds or fails. The History tab lets you reopen your tasks and reuse their parameters.

What happens if the model is closed?

The model keeps its page and identity, but new generation requests are blocked. Existing task records remain accessible. An upstream outage is reported separately from an administrator closing the model.

Read the API documentation ↗

Discover more AI tools

Browse all models ↗

Integration topics / Documentation

All documentation ↗