Riverflow 2 Standard Preview

AI Image Editing Model

$$ · 3.5¢

Sourceful's balanced Riverflow 2 variant combining realistic output with reliable detail control and smooth integration of reference products for professional image creation

riverflow-2-standard API OpenAI-compatible

Integrate Riverflow 2 Standard Preview into your applications via Lumenfall's OpenAI-compatible API to programmatically generate realistic images and perform precise image editing using Sourceful’s latest diffusion architecture.

Base URL
https://api.lumenfall.ai/openai/v1
Model
riverflow-2-standard-preview

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": "riverflow-2-standard-preview",
    "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=riverflow-2-standard-preview" \
  -F "[email protected]" \
  -F "prompt=Add a starry night sky to this image" \
  -F "size=1024x1024"
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }