Stable Diffusion 3.5 Large Turbo AI Image Generation Model

Distilled version of SD 3.5 Large that generates high-quality images in just 4 steps, offering faster inference and reduced costs

Stable Diffusion 3.5 Large Turbo API OpenAI-compatible

Integrate Stable Diffusion 3.5 Large Turbo into your workflow via Lumenfall’s OpenAI-compatible API to generate high-quality text-to-image outputs with minimal inference time.

Base URL
https://api.lumenfall.ai/openai/v1
Model
stable-diffusion-3.5-large-turbo
curl -X POST \
  https://api.lumenfall.ai/openai/v1/images/generations \
  -H "Authorization: Bearer $LUMENFALL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "stable-diffusion-3.5-large-turbo",
    "prompt": "A serene mountain landscape at sunset",
    "size": "1024x1024"
  }'
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }