Stable Diffusion 3.5 Medium AI Image Generation Model

Stability AI's 2.5-billion parameter Multimodal Diffusion Transformer with improvements (MMDiT-X) text-to-image model optimized for consumer hardware, featuring improved image quality, typography, and complex prompt understanding

Stable Diffusion 3.5 Medium API OpenAI-compatible

Developers can generate high-resolution images using Stable Diffusion 3.5 Medium through Lumenfall’s OpenAI-compatible API. This 2.5-billion parameter model supports standard text-to-image workflows, delivering improved visual quality and prompt fidelity at a smaller footprint.

Base URL
https://api.lumenfall.ai/openai/v1
Model
stable-diffusion-3.5-medium
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-medium",
    "prompt": "A serene mountain landscape at sunset",
    "size": "1024x1024"
  }'
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }