All models
Balanced
dreamshaper-8-lcmDreamShaper 8 LCM
Photorealism and wide style range. Great for diverse creative content and anime.
Best for: Photorealistic scenes, anime, diverse styles, characters, fantasy, and creative art with good speed.
Quality steps
25
Fast preset
12
Max steps
50
Negative prompt
Yes
cURL
POST a single request to generate an image with DreamShaper 8 LCM.
curl -X POST https://imageapi.org/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "a cinematic mountain landscape at sunrise",
"model": "dreamshaper-8-lcm",
"width": 1024,
"height": 1024,
"num_inference_steps": 25
}'Python
import requests
resp = requests.post(
"https://imageapi.org/api/v1/generate",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"prompt": "a cinematic mountain landscape at sunrise",
"model": "dreamshaper-8-lcm",
"width": 1024,
"height": 1024,
"num_inference_steps": 25,
},
timeout=120,
)
print(resp.json())Node.js
const res = await fetch("https://imageapi.org/api/v1/generate", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
prompt: "a cinematic mountain landscape at sunrise",
model: "dreamshaper-8-lcm",
width: 1024,
height: 1024,
num_inference_steps: 25,
}),
});
console.log(await res.json());Plan availability
DreamShaper 8 LCM is included on the following plans.
- basic
- pro
- enterprise
Frequently asked questions
How do I call the DreamShaper 8 LCM model?
Send a POST request to https://imageapi.org/api/v1/generate with the body { "prompt": "...", "model": "dreamshaper-8-lcm" } and an Authorization: Bearer YOUR_API_KEY header.
What is DreamShaper 8 LCM best for?
Photorealistic scenes, anime, diverse styles, characters, fantasy, and creative art with good speed.
Does DreamShaper 8 LCM support negative prompts?
Yes — pass a negative_prompt field to steer DreamShaper 8 LCM away from unwanted concepts.
What inference step counts work best for DreamShaper 8 LCM?
Use ~25 steps for production quality and ~12 steps when you want lower latency. The hard cap is 50 steps.
Which plans include DreamShaper 8 LCM?
DreamShaper 8 LCM is available on basic, pro, enterprise plans.
Ready to ship with DreamShaper 8 LCM?
Free tier, transparent pricing, and a single REST endpoint for 9 models.
