All Models


Image
🌸
Seedream 3.0
ByteDance
About
Seedream 3.0 is ByteDance's image generation model, producing visually striking images with rich colors, strong compositional awareness, and a distinctive aesthetic quality. Especially strong for creative lifestyle imagery, character illustrations, and content that benefits from vibrant visual impact.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| Standard | $0.038/img | 8 cr |
Use Cases
Vibrant lifestyle imageryCharacter illustrationCreative marketing visualsSocial content with visual punch
API Example
JavaScript
const response = await fetch("https://api.lumavo.com/v1/txt2img", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "seedream-3-0",
prompt: "A vibrant street market in Southeast Asia at sunset, cinematic warm colors",
count: 1
})
});
const { taskId } = await response.json();