HiDream I1 Fast AI Image Generation Model

Distilled version of HiDream AI's 17B parameter text-to-image model

HiDream I1 Fast API OpenAI-compatible

Access HiDream I1 Fast through Lumenfall's OpenAI-compatible API to integrate fast, high-quality text-to-image generation into any application with a single endpoint.

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