Mock Image (Testing)

AI Image Generation Model

Free

Mock Image (Testing) API OpenAI-compatible

Generate sample image responses using the Mock Image testing model via Lumenfall’s OpenAI-compatible API to validate your text-to-image integration. This utility model provides a reliable way to test media generation pipelines without consuming credits for production-grade image synthesis.

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