DALL-E 3 AI Image Generation Model

Deprecated

OpenAI's previous generation image model with higher quality than DALL-E 2 and support for larger resolutions

DALL-E 3 API OpenAI-compatible

Access DALL-E 3 for automated text-to-image generation through Lumenfall’s OpenAI-compatible API to programmatically create high-fidelity visual assets.

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