Imagen 3.0 Generate 002 AI Image Generation Model

Google's Imagen 3.0 text-to-image generation model, producing high-quality images with improved detail and lighting

Imagen 3.0 Generate 002 API OpenAI-compatible

Integrate Google's Imagen 3.0 Generate 002 through the Lumenfall API to programmatically generate high-resolution images from text prompts using an OpenAI-compatible interface.

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