Seedream 5.0 Lite

doubao/seedream-5.0-lite/text-to-image

Seedream 5.0 Lite by is a state-of-the-art text-to-image model with enhanced typography, clear text rendering for posters and brand visuals, superior prompt adherence, and up to 4K resolution. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

Examples

Seedream 5.0 Lite example 1

Parameters

NameTypeDefaultConstraintsDescription
prompt *Prompttextarea≤ 5000 charsThe positive prompt for the generation.
sizeSizetext2048x2048≤ 500 charsSpecify the width and height pixel values of the generated image.Total pixel value range: [2560*1440, 4096*4096]
output_formatOutput Formatselectjpeg | pngThe format of the output image.

API

Call this model through one unified REST API. Get a key on the API Keys page.

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-5.0-lite/text-to-image" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "prompt": "A futuristic cityscape at sunset with flying cars and neon lights, designed in a cyberpunk style",
    "size": "2560x1440",
    "output_format": "png"
  }
}'

# 2) Poll until status is "completed", then read the output URLs
curl "https://www.namifusion.com/api/v1/marketplace/run/tasks/TASK_UUID" \
  -H "Authorization: Bearer YOUR_API_KEY"
Python
import time, requests

API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# 1) Submit
resp = requests.post(
    "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-5.0-lite/text-to-image",
    headers=HEADERS,
    json={
        "input": {
            "prompt": "A futuristic cityscape at sunset with flying cars and neon lights, designed in a cyberpunk style",
            "size": "2560x1440",
            "output_format": "png"
        }
    },
)
resp.raise_for_status()  # 401/402/429/5xx stop here instead of polling a bad task
task = resp.json()

# 2) Poll until a terminal state (completed / failed / cancelled).
#    This model is allowed up to 300s server-side.
deadline = time.time() + 360
while task.get("status") not in ("completed", "failed", "cancelled"):
    if time.time() > deadline:
        raise TimeoutError(f"still {task.get('status')} — keep the task_uuid and poll later")
    time.sleep(3)
    poll = requests.get(f"https://www.namifusion.com/api/v1/marketplace/run/tasks/{task['task_uuid']}", headers=HEADERS)
    poll.raise_for_status()
    task = poll.json()

print(task["status"], task.get("output"))
JavaScript
const API_KEY = "YOUR_API_KEY";
const HEADERS = { Authorization: `Bearer ${API_KEY}` };

// 1) Submit
const resp = await fetch("https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-5.0-lite/text-to-image", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "prompt": "A futuristic cityscape at sunset with flying cars and neon lights, designed in a cyberpunk style",
      "size": "2560x1440",
      "output_format": "png"
    }
  }),
});
if (!resp.ok) throw new Error(`submit failed: ${resp.status} ${await resp.text()}`);
let task = await resp.json();

// 2) Poll until a terminal state (completed / failed / cancelled).
//    This model is allowed up to 300s server-side.
const deadline = Date.now() + 360 * 1000;
while (!["completed", "failed", "cancelled"].includes(task.status)) {
  if (Date.now() > deadline) throw new Error(`still ${task.status} — keep the task_uuid and poll later`);
  await new Promise((r) => setTimeout(r, 3000));
  const poll = await fetch(`https://www.namifusion.com/api/v1/marketplace/run/tasks/${task.task_uuid}`, { headers: HEADERS });
  if (!poll.ok) throw new Error(`poll failed: ${poll.status}`);
  task = await poll.json();
}

console.log(task.status, task.output);

Documentation

Seedream 5.0 Lite

Lightweight, high-performance text-to-image model with 4K resolution support

Seedream 5.0 Lite is a cutting-edge text-to-image model designed for creating clear text rendering, posters, and brand visuals. It offers superior prompt adherence, supports resolutions up to 4K, and is accessible via a ready-to-use REST inference API. With no cold starts, excellent performance, and affordable pricing, it is ideal for a wide range of applications.

🚀 Key Features

  • Lightweight & Fast: Optimized for speed while maintaining high visual quality.
  • Flexible Aspect Ratios: Supports multiple presets including 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, and 2:3.
  • High-Resolution Support: Customizable width and height ranging from 1440 to 8192 pixels.
  • Built-in Prompt Enhancer: Automatically refines your descriptions for improved results.
  • Affordable Pricing: Professional-quality output for just $0.035 per image.

🛠️ Technical Specifications

ParameterDescriptionDefaultRange
PromptText description of the desired image.Required-
WidthCustom width in pixels.20481440 ~ 8192
HeightCustom height in pixels.20481440 ~ 8192
Aspect RatioSelect a preset aspect ratio (e.g., 1:1, 16:9).Optional1:1, 16:9, 9:16, etc.
Output FormatImage output format, supports JPEG and PNG.JPEGJPEG, PNG

Sample Prompts

  1. Prompt: “A vintage-style café, sunlight streaming through windows, warm tones, detailed wooden furniture.”
  2. Prompt: “Futuristic cityscape, neon lights, night scene, high-definition details.”

💰 Pricing

Output TypePrice per Image
Standard Image$0.035

💡 Best Use Cases

  • Social Media Content: Create eye-catching visuals for Instagram, TikTok, and more.
  • Photography Style: Generate photorealistic images with camera and lighting references.
  • Marketing & Ads: Produce professional images for campaigns and promotions.
  • Concept Art: Visualize ideas and creative concepts quickly.
  • Personal Projects: Bring your creative visions to life affordably.

🔗 Related Models

  • Seedream V5.0 Lite Edit: Edit images using text instructions.
  • Seedream V4 Text-to-Image: Previous generation model for basic needs.

Seedream 5.0 Lite is your go-to solution for generating high-quality images quickly and affordably. Try it now and unleash your creative potential!

Related models

xAI Grok Imagine Image v2.0 Text to Image
Text to ImageX Ai

xAI Grok Imagine Image v2.0 Text to Image

xAI Grok Imagine Image V2.0 Text-to-Image generates high-quality images from text prompts, with configurable aspect ratio, resolution, and quality for creative visuals, social content, marketing assets, and production workflows. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

from $0.080 / per run
Qwen Image 3.0 Pro Text to Image
Text to ImageQwen Image 3.0 Pro

Qwen Image 3.0 Pro Text to Image

Qwen Image 3.0 Pro is a professional-grade text-to-image model with superior quality and advanced prompt understanding. Up to 2k. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

from $0.080 / per run
OpenAI GPT Image 2 Text-to-Image
Text to ImageOpenAI

OpenAI GPT Image 2 Text-to-Image

OpenAI's GPT Image 2 Text-to-Image generates high-quality images from natural-language prompts. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

from $0.660 / per run
OpenAI GPT Image 2 Edit
Text to ImageOpenAI

OpenAI GPT Image 2 Edit

OpenAI's GPT Image 2 Edit enables image editing from natural-language instructions with one or more reference images. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

from $0.660 / per run
Nami Z-Image T2I Spicy
Text to Image

Nami Z-Image T2I Spicy

Generate an image from a text prompt with configurable width, height, prompt enhancement, and seed.

from $0.020 / per run
Nano Banana Text to Image
Text to ImageGoogle

Nano Banana Text to Image

Gemini 2.5 Flash Image. Lightweight and fast. The most affordable option for instant, high-volume generation.

from $0.040 / per run
Nano Banana Pro Text to Image
Text to ImageGoogle

Nano Banana Pro Text to Image

Gemini 3.0 Pro Image. The high-fidelity choice for 4K visuals, multilingual text rendering, and pro camera controls.

from $0.140 / per run
Nano Banana Pro Text to Image
Text to ImageGoogle

Nano Banana Pro Text to Image

Gemini 3.0 Pro Image. The high-fidelity choice for 4K visuals, multilingual text rendering, and pro camera controls.

from $0.070 / per run