Lucid Origin AI Image Generation Model

Leonardo AI's versatile image model producing artistic and high-quality visuals with improved prompt adherence, diversity, and definition

Lucid Origin API OpenAI-compatible

Integrate Lucid Origin for text-to-image generation through Lumenfall’s OpenAI-compatible API to programmatically generate artistic visuals and high-definition imagery. This endpoint provides a streamlined interface for creating diverse image assets with the versatile Leonardo AI foundation.

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