# Recraft V4 Pro > Recraft's latest image generation model at ~2048px resolution with stronger composition, refined lighting, and realistic materials for print-ready and large-scale work ## Quick Reference - Model ID: recraft-v4-pro - Creator: Recraft AI - Status: active - Family: recraft - Base URL: https://api.lumenfall.ai/openai/v1 ## Specifications - Max Resolution: 3072x3072 - Input Modalities: text - Output Modalities: image ## Model Identifiers - Primary Slug: recraft-v4-pro ## Dates ## Tags image-generation, text-to-image ## Available Providers ### Replicate - Config Key: replicate/recraft-v4-pro - Provider Model ID: recraft-ai/recraft-v4-pro - Pricing: - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.25}] - source_url: https://replicate.com/recraft-ai/recraft-v4-pro - effective_at: 2026-03-10 ### fal.ai - Config Key: fal/recraft-v4-pro - Provider Model ID: fal-ai/recraft/v4/pro/text-to-image - Pricing: - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.25}] - source_url: https://fal.ai/models/fal-ai/recraft/v4/pro/text-to-image - effective_at: 2026-03-10 ## Performance Metrics Provider performance over the last 30 days. ### replicate - Median Generation Time (p50): 33670ms - 95th Percentile Generation Time (p95): 35199ms - Average Generation Time: 33445ms - Success Rate: 100.0% - Total Requests: 14 - Time to First Byte (p50): 33802ms - Time to First Byte (p95): 35082ms ## Image Gallery 4 images available for this model. - Curated examples: 4 - "Cinematic wide shot of a high-end, boutique hotel lobby at golden hour. On the polished dark wood wall behind the min..." - "A hyper-realistic close-up of a rustic wooden workbench in a sunlit carpentry workshop. In the center, a set of high-..." - "A medium shot of an elderly artisan in a sunlit ceramic studio, hands covered in wet clay as he shapes a minimalist v..." - "A nostalgic polaroid of a cozy outdoor flower shop with a chalkboard sign that says "BLOOM & GROW" in elegant white c..." ## Example Prompt The following prompt was used to generate an example image in our playground: A nostalgic polaroid of a cozy outdoor flower shop with a chalkboard sign that says "BLOOM & GROW" in elegant white cursive. In the background, a capybara sits calmly by a watering can, blending into the rustic garden scenery. ## 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": "recraft-v4-pro", "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: 'recraft-v4-pro', 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="recraft-v4-pro", prompt="A serene mountain landscape at sunset", size="1024x1024" ) # { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } print(response.data[0].url) ## About ## Overview Recraft V4 Pro is a high-resolution text-to-image model developed by Recraft AI, specifically designed for professional-grade graphic design and print-ready digital art. Unlike many foundation models that focus primarily on photorealism, Recraft V4 Pro prioritizes spatial composition, complex text rendering, and material accuracy at resolutions up to 2048px. It is characterized by its ability to follow long, intricate prompts while maintaining anatomical and structural consistency. ## Strengths * **Exact Text Rendering:** The model demonstrates high accuracy when generating specific strings of text within images, making it suitable for logo design, posters, and UI mockups. * **Material and Texture Fidelity:** It excels at simulating physical properties such as the specularity of metal, the translucency of glass, and the tactile nature of various fabrics. * **Compositional Control:** V4 Pro handles complex scene layouts better than earlier iterations, accurately placing multiple objects in relation to one another as defined in the prompt. * **Vector-Like Precision:** Although it outputs raster images, the model generates sharp edges and clean color separations that mimic the aesthetic of professional vector software and high-end digital illustration. ## Limitations * **Prompt Sensitivity:** To achieve the highest level of detail in large-scale prints, the model often requires more descriptive prompting regarding lighting and material types compared to "one-click" consumer models. * **Inference Speed:** Due to its high output resolution (~2048px) and focus on structural integrity, it may have higher latency than smaller, distilled models optimized for rapid iteration. * **Stylized Bias:** While capable of photorealism, the model's default "cleanliness" can sometimes lean toward a polished commercial aesthetic that may require specific negative prompting for more "gritty" or lo-fi artistic styles. ## Technical Background Recraft V4 Pro is an evolution of Recraft's proprietary architecture, optimized for high-resolution 2K outputs without the artifacts often seen in tiled upscaling or standard latent diffusion. The training methodology emphasizes alignment with design-centric datasets, focusing on spatial relationships and typographical accuracy. It utilizes a refined lighting system that calculates shadows and reflections based on object geometry rather than simple texture overlays. ## Best For This model is best suited for professional designers creating print-ready assets, brand identities, and commercial illustrations where precise text and high-resolution details are non-negotiable. It is an excellent choice for generating marketing collateral, detailed product concepts, and complex icon sets. Recraft V4 Pro is available for testing and integration through Lumenfall’s unified API and interactive playground, allowing developers to compare its output alongside other industry-leading image models. ## Frequently Asked Questions ### How much does Recraft V4 Pro cost? Recraft V4 Pro starts at $0.25 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing. ### How do I use Recraft V4 Pro via API? You can use Recraft V4 Pro through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "recraft-v4-pro". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer Recraft V4 Pro? Recraft V4 Pro is available through Replicate and fal.ai on Lumenfall. Lumenfall automatically routes requests to the best available provider. ### What is the maximum resolution for Recraft V4 Pro? Recraft V4 Pro supports images up to 3072x3072 resolution. ## Links - Model Page: https://lumenfall.ai/models/recraft-ai/recraft-v4-pro - About: https://lumenfall.ai/models/recraft-ai/recraft-v4-pro/about - Providers, Pricing & Performance: https://lumenfall.ai/models/recraft-ai/recraft-v4-pro/providers - API Reference: https://lumenfall.ai/models/recraft-ai/recraft-v4-pro/api - Benchmarks: https://lumenfall.ai/models/recraft-ai/recraft-v4-pro/benchmarks - Use Cases: https://lumenfall.ai/models/recraft-ai/recraft-v4-pro/use-cases - Gallery: https://lumenfall.ai/models/recraft-ai/recraft-v4-pro/gallery - Playground: https://lumenfall.ai/playground?model=recraft-v4-pro - API Documentation: https://docs.lumenfall.ai