Reve Image 1.0 AI Image Editing Model

Featured

Reve AI's text-to-image generation model with strong aesthetic quality, accurate text rendering, and detailed instruction following capabilities

reve-image-1 API OpenAI-compatible

Lumenfall provides programmatic access to Reve Image 1.0 via a unified OpenAI-compatible API, allowing developers to generate high-fidelity images and perform complex image editing through a single integration. Integrate Reve AI's text-to-image capabilities into any workflow using standard HTTP requests for visual media production.

Base URL
https://api.lumenfall.ai/openai/v1
Model
reve

Text to Image Generate

Create images from text descriptions

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

Image Editing Edit

Transform existing images with text instructions

curl -X POST \
  https://api.lumenfall.ai/openai/v1/images/edits \
  -H "Authorization: Bearer $LUMENFALL_API_KEY" \
  -F "model=reve" \
  -F "[email protected]" \
  -F "prompt=Add a starry night sky to this image" \
  -F "size=1024x1024"
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }