Seedream 5.0 Lite Sequential
Description
Seedream 5.0 Lite Sequential generates consistent multi-image sets in one run, with unified style, palette, and character continuity.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.04
per image
Hallucination rate
0%
Supported sizes
2560x1440, 1440x2560, 1920x1920, 3072x2048, 2048x3072, 4096x2304, 2304x4096
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.04
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1440x2560 | $0.04 |
| 1920x1920 | $0.04 |
| 2048x3072 | $0.04 |
| 2304x4096 | $0.04 |
| 2560x1440 | $0.04 |
| 3072x2048 | $0.04 |
| 4096x2304 | $0.04 |
| auto | $0.04 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 2560x1440 1440x2560 1920x1920 3072x2048 2048x3072 4096x2304 2304x4096 |
Feature Availability
Capabilities explicitly listed in the current payload.
Image
Available
Vision
Not listed
Function calling
Not listed
Reasoning
Not listed
Benchmark Summary
Overall image benchmark metrics currently available. CI95: -11/11
Overall ELO
1122
Rank
#30
Appearances
3,508
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Cartoon Illustration
294 appearances · CI95 -42/42
1198
ELO
Style Traditional Art
207 appearances · CI95 -48/48
1182
ELO
Subject Fantasy Mythical
466 appearances · CI95 -32/32
1175
ELO
Subject People: Portraits
357 appearances · CI95 -38/38
1159
ELO
Subject People: Groups Activities
324 appearances · CI95 -39/39
1152
ELO
Style Anime
243 appearances · CI95 -45/45
1139
ELO
Subject Commercial
243 appearances · CI95 -45/45
1136
ELO
Style General Photorealistic
1,124 appearances · CI95 -21/21
1107
ELO
Style Vintage Retro
158 appearances · CI95 -56/56
1106
ELO
Subject Text Typography
169 appearances · CI95 -54/54
1105
ELO
Subject Nature Landscapes
275 appearances · CI95 -42/42
1100
ELO
Style Graphic Design Digital Rendering
996 appearances · CI95 -22/22
1093
ELO
Subject Physical Spaces
411 appearances · CI95 -34/34
1085
ELO
Subject Futuristic Sci-fi
418 appearances · CI95 -34/34
1072
ELO
Code Samples
Quick start with the Routeway API
const response = await fetch('https://api.routeway.ai/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer <YOUR_API_KEY>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'seedream-v5.0-lite-sequential',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);