Stable Diffusion 3.5 Large AI Image Generation Model

Stability AI's 8.1-billion parameter Multimodal Diffusion Transformer (MMDiT) text-to-image model featuring improved image quality, typography, complex prompt understanding, and resource-efficiency

Stable Diffusion 3.5 Large API OpenAI-compatible

Integrate Stable Diffusion 3.5 Large into your application via Lumenfall’s OpenAI-compatible API to generate high-resolution images from text prompts. This unified endpoint provides programmatic access to the model's Multimodal Diffusion Transformer for scalable media generation.

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