# Imagen 4.0 Ultra Generate 001 > Google's Imagen 4.0 Ultra model offering the highest fidelity and resolution for professional-grade image generation ## Quick Reference - Model ID: imagen-4.0-ultra-generate-001 - Creator: Google - Status: active - Family: imagen-4 - Base URL: https://api.lumenfall.ai/openai/v1 ## Specifications - Input Modalities: text - Output Modalities: image ## Model Identifiers - Primary Slug: imagen-4.0-ultra-generate-001 ## Dates ## Tags image-generation, text-to-image, ultra, high-quality ## Available Providers ### Gemini API - Config Key: gemini/imagen-4.0-ultra-generate-001 - Provider Model ID: imagen-4.0-ultra-generate-001 - Regions: global - Pricing: - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.06}] - source_url: https://ai.google.dev/gemini-api/docs/pricing#imagen ### Vertex AI - Config Key: vertex/imagen-4.0-ultra-generate-001 - Provider Model ID: imagen-4.0-ultra-generate-001 - Regions: global - Pricing: - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.06}] - source_url: https://cloud.google.com/vertex-ai/generative-ai/pricing ### Replicate - Config Key: replicate/imagen-4.0-ultra-generate-001 - Provider Model ID: google/imagen-4-ultra - Pricing: - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.06}] - source_url: https://replicate.com/google/imagen-4-ultra - effective_at: 2026-01-26 ### fal.ai - Config Key: fal/imagen-4.0-ultra-generate-001 - Provider Model ID: fal-ai/imagen4/preview/ultra - Pricing: - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.06}] - source_url: https://fal.ai/models/fal-ai/imagen4/preview/ultra/api - effective_at: 2026-01-26 ## Arena Benchmarks ### Heroic Super Hero Portrait - Elo: 1199 - Record: 5W / 6L / 4T (15 battles) - Rank: #6 of 19 ### Victorian Greenhouse Oasis - Elo: 1170 - Record: 11W / 6L / 1T (18 battles) - Rank: #12 of 17 ### Isometric Miniature Diorama Scenes - Elo: 1160 - Record: 8W / 6L / 2T (16 battles) - Rank: #13 of 19 ### Vintage Cafe Logo - Elo: 1147 - Record: 7W / 8L / 3T (18 battles) - Rank: #12 of 19 ### Modern Clean Menu - Elo: 1133 - Record: 3W / 7L / 1T (11 battles) - Rank: #15 of 19 ### Geometric Composition - Elo: 1128 - Record: 6W / 12L / 3T (21 battles) - Rank: #17 of 22 ### Apollo 11: Journey to Tranquility - Elo: 1108 - Record: 4W / 11L / 2T (17 battles) - Rank: #14 of 19 ### Adorable Baby Animals in Sunny Meadow - Elo: 1084 - Record: 6W / 9L / 2T (17 battles) - Rank: #22 of 23 ### Candid Street Photography - Elo: 1078 - Record: 1W / 11L / 0T (12 battles) - Rank: #22 of 22 ### Intricate Floral Mandala - Elo: 1077 - Record: 4W / 10L / 0T (14 battles) - Rank: #13 of 15 ## Use Cases & Category Performance ### Product, Branding & Commercial (Text-to-Image) - Rank: #15 of 19 - Elo: 1157 - Record: 7W / 8L / 3T (18 battles) - Win Rate: 38.9% ### Text Rendering (Text-to-Image) - Rank: #19 of 21 - Elo: 1188 - Record: 14W / 26L / 6T (46 battles) - Win Rate: 30.4% ### Photorealism (Text-to-Image) - Rank: #22 of 22 - Elo: 1056 - Record: 1W / 11L / 0T (12 battles) - Win Rate: 8.3% ## Image Gallery 14 images available for this model. - Curated examples: 4 - "Cinematic wide shot of a high-end, minimalist luxury boutique storefront at dusk. The shop's facade features large gl..." - "A hyper-realistic close-up portrait of an elderly watchmaker in a sun-drenched workshop, intricately focusing on his ..." - "A hyper-realistic close-up of a weathered, vintage leather traveler's journal resting on a rustic wooden table next t..." - "A vibrant, sun-drenched farmers market stall with a chalkboard sign that reads "FRESH ORGANIC HARVEST" in elegant, ha..." - Competition results: 10 - Heroic Super Hero Portrait: #6 of 19 (Elo 1199) - Victorian Greenhouse Oasis: #12 of 17 (Elo 1170) - Isometric Miniature Diorama Scenes: #13 of 19 (Elo 1160) - Vintage Cafe Logo: #12 of 19 (Elo 1147) - Modern Clean Menu: #15 of 19 (Elo 1133) - Geometric Composition: #17 of 22 (Elo 1128) - Apollo 11: Journey to Tranquility: #14 of 19 (Elo 1108) - Adorable Baby Animals in Sunny Meadow: #22 of 23 (Elo 1084) - Candid Street Photography: #22 of 22 (Elo 1078) - Intricate Floral Mandala: #13 of 15 (Elo 1077) ## Example Prompt The following prompt was used to generate an example image in our playground: A vibrant, sun-drenched farmers market stall with a chalkboard sign that reads "FRESH ORGANIC HARVEST" in elegant, hand-lettered chalk typography. In the soft-focus background, a capybara calmly inspects a crate of apples near a wooden cart. ## Code Examples ### Text to Image (Generation) #### cURL curl -X POST \ https://api.lumenfall.ai/openai/v1/images/generations \ -H "Authorization: Bearer $LUMENFALL_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "imagen-4.0-ultra-generate-001", "prompt": "A serene mountain landscape at sunset", "size": "1024x1024" }' # Response: # { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] } #### JavaScript import OpenAI from 'openai'; const client = new OpenAI({ apiKey: 'YOUR_API_KEY', baseURL: 'https://api.lumenfall.ai/openai/v1' }); const response = await client.images.generate({ model: 'imagen-4.0-ultra-generate-001', prompt: 'A serene mountain landscape at sunset', size: '1024x1024' }); // { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } console.log(response.data[0].url); #### Python from openai import OpenAI client = OpenAI( api_key="YOUR_API_KEY", base_url="https://api.lumenfall.ai/openai/v1" ) response = client.images.generate( model="imagen-4.0-ultra-generate-001", prompt="A serene mountain landscape at sunset", size="1024x1024" ) # { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } print(response.data[0].url) ## About ## Overview Imagen 4.0 Ultra Generate 001 is Google’s high-fidelity flagship text-to-image model, engineered for professional-grade creative workflows. It serves as the top-tier offering in the Imagen 4 family, prioritizing photochemical realism, intricate detail, and high-resolution output over processing speed. The model is designed to translate complex natural language prompts into visually coherent assets with a focus on aesthetic quality and structural accuracy. ## Strengths * **Photorealistic Texture and Lighting:** Excels at rendering complex surfaces such as skin pores, fabric weaves, and atmospheric lighting, making it suitable for high-end commercial photography simulations. * **Prompt Adherence:** Demonstrates a high degree of spatial reasoning and semantic understanding, accurately placing multiple objects in a scene based on descriptive prepositions. * **Typography and Text Rendering:** Specifically optimized to minimize the character distortions common in earlier generative models, allowing for legible and stylistically consistent text overlays within images. * **High-Resolution Composition:** Capable of generating high-density visual information that maintains clarity even when scaled for professional print or large-format digital displays. ## Limitations * **Inference Latency:** Due to its "Ultra" architecture and high parameter count, generation times are typically longer compared to "Flash" or "Pro" variants optimized for near-instantaneous previews. * **Strict Safety Filtering:** Google’s integrated safety guardrails can be more restrictive than open-weights models, sometimes rejecting prompts that contain stylized violence or sensitive public figures. * **Compute Cost:** At a starting price of $0.06 per generation, it carries a higher operational cost, making it less ideal for high-volume batch processing where lower fidelity would suffice. ## Technical Background Imagen 4.0 Ultra utilizes a transformer-based diffusion architecture, transitioning from earlier U-Net designs to leverage the scaling laws seen in large language models. The training process incorporates a massive dataset of high-resolution images paired with descriptive, high-quality captions to bridge the gap between human intent and visual execution. A key technical focus for this version is the refined latent space, which allows the model to handle higher pixel density without introducing artifacts. ## Best For This model is best suited for visual content creation where quality is non-negotiable, such as digital marketing campaigns, concept art for film and gaming, and professional architectural visualizations. It is particularly effective for designers who need to produce "hero" assets that require minimal manual retouching. Imagen 4.0 Ultra Generate 001 is available for integration and testing through Lumenfall's unified API and playground, providing a streamlined environment to compare its output alongside other industry-leading generative models. ## Frequently Asked Questions ### How much does Imagen 4.0 Ultra Generate 001 cost? Imagen 4.0 Ultra Generate 001 starts at $0.06 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing. ### How do I use Imagen 4.0 Ultra Generate 001 via API? You can use Imagen 4.0 Ultra Generate 001 through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "imagen-4.0-ultra-generate-001". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer Imagen 4.0 Ultra Generate 001? Imagen 4.0 Ultra Generate 001 is available through Gemini API, Vertex AI, Replicate, and fal.ai on Lumenfall. Lumenfall automatically routes requests to the best available provider. ## Links - Model Page: https://lumenfall.ai/models/google/imagen-4.0-ultra-generate-001 - About: https://lumenfall.ai/models/google/imagen-4.0-ultra-generate-001/about - Providers, Pricing & Performance: https://lumenfall.ai/models/google/imagen-4.0-ultra-generate-001/providers - API Reference: https://lumenfall.ai/models/google/imagen-4.0-ultra-generate-001/api - Benchmarks: https://lumenfall.ai/models/google/imagen-4.0-ultra-generate-001/benchmarks - Use Cases: https://lumenfall.ai/models/google/imagen-4.0-ultra-generate-001/use-cases - Gallery: https://lumenfall.ai/models/google/imagen-4.0-ultra-generate-001/gallery - Playground: https://lumenfall.ai/playground?model=imagen-4.0-ultra-generate-001 - API Documentation: https://docs.lumenfall.ai