Stable Diffusion 3.5 Large
Description
Stable Diffusion's newest model. Generates a wide variety of images reflecting different styles without complex prompting.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.13
per image
Hallucination rate
0%
Supported sizes
1792x1024, 1024x1792, 1024x768, 768x1024, 1080x1350
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.13
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1024x1792 | $0.13 |
| 1024x768 | $0.13 |
| 1080x1350 | $0.13 |
| 1792x1024 | $0.13 |
| 768x1024 | $0.13 |
| auto | $0.13 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1792x1024 1024x1792 1024x768 768x1024 1080x1350 |
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: -9/9
Overall ELO
1028
Rank
#78
Appearances
5,550
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Traditional Art
284 appearances · CI95 -42/42
1126
ELO
Subject Nature Landscapes
683 appearances · CI95 -27/27
1086
ELO
Subject Fantasy Mythical
821 appearances · CI95 -25/25
1056
ELO
Subject Futuristic Sci-fi
731 appearances · CI95 -26/26
1049
ELO
Style General Photorealistic
2,479 appearances · CI95 -14/14
1046
ELO
Subject Physical Spaces
1,014 appearances · CI95 -22/22
1044
ELO
Style Anime
371 appearances · CI95 -37/37
1028
ELO
Subject People: Groups Activities
496 appearances · CI95 -33/33
1014
ELO
Style Vintage Retro
214 appearances · CI95 -50/50
1010
ELO
Style Graphic Design Digital Rendering
1,612 appearances · CI95 -17/17
1004
ELO
Subject Commercial
322 appearances · CI95 -41/41
1003
ELO
Subject People: Portraits
404 appearances · CI95 -36/36
984
ELO
Style Cartoon Illustration
414 appearances · CI95 -36/36
970
ELO
Subject Text Typography
263 appearances · CI95 -44/44
969
ELO
Subject Ui/ux Design
294 appearances · CI95 -44/44
947
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: 'stable-diffusion-v3.5-large',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);