IMAGE GENERATION API
Access every major image generation model through a single API. FLUX.1 for photorealism, SDXL for reliability, Ideogram for text rendering, and more. OpenAI-compatible images endpoint with per-image billing and no subscriptions.
QUICK START
from openai import OpenAI
client = OpenAI(
base_url="https://api.runcrate.ai/v1",
api_key="rc_live_YOUR_API_KEY",
)
# Try different models for different styles
response = client.images.generate(
model="black-forest-labs/FLUX.1-dev",
prompt="A minimalist logo for a tech startup, clean lines",
size="1024x1024",
)
print(response.data[0].url)AVAILABLE MODELS
| Model | Provider | Price | Detail |
|---|---|---|---|
| black-forest-labs/FLUX.1-dev | Black Forest Labs | Per-image | 12B, photorealistic |
| black-forest-labs/FLUX.1-schnell | Black Forest Labs | Per-image | 4-step fast generation |
| stabilityai/stable-diffusion-xl-base-1.0 | Stability AI | Per-image | SDXL, large ecosystem |
| ideogram-ai/ideogram-v2 | Ideogram | Per-image | Superior text rendering |
WHY RUNCRATE
Rectified flow (FLUX), latent diffusion (SDXL), and proprietary models (Ideogram). Pick the right tool for your visual style.
Ideogram excels at rendering legible text in images. Generate marketing materials, social cards, and signage with readable typography.
Pay per image generated. No subscriptions, no monthly fees. Generate one image or ten thousand with the same pricing model.
Same OpenAI-compatible endpoint across all models. Switch between FLUX, SDXL, and Ideogram by changing one parameter.
FAQ