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
Parameters
| Name | Type | Default | Constraints | Description |
|---|---|---|---|---|
| prompt *Prompt | textarea | — | ≤ 5000 chars | The positive prompt for the generation. |
| sizeSize | text | 2048x2048 | ≤ 500 chars | Specify the width and height pixel values of the generated image.Total pixel value range: [2560*1440, 4096*4096] |
| output_formatOutput Format | select | — | jpeg | png | The 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
| Parameter | Description | Default | Range |
|---|---|---|---|
| Prompt | Text description of the desired image. | Required | - |
| Width | Custom width in pixels. | 2048 | 1440 ~ 8192 |
| Height | Custom height in pixels. | 2048 | 1440 ~ 8192 |
| Aspect Ratio | Select a preset aspect ratio (e.g., 1:1, 16:9). | Optional | 1:1, 16:9, 9:16, etc. |
| Output Format | Image output format, supports JPEG and PNG. | JPEG | JPEG, PNG |
Sample Prompts
- Prompt: “A vintage-style café, sunlight streaming through windows, warm tones, detailed wooden furniture.”
- Prompt: “Futuristic cityscape, neon lights, night scene, high-definition details.”
💰 Pricing
| Output Type | Price 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
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.
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.
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.
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.
Nami Z-Image T2I Spicy
Generate an image from a text prompt with configurable width, height, prompt enhancement, and seed.
Nano Banana Text to Image
Gemini 2.5 Flash Image. Lightweight and fast. The most affordable option for instant, high-volume generation.
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.
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.