Back to Comparison Hub/Text to Image Pricing
Text to Image

Text to Image API Pricing

VIDU Text-to-Image Q2 is a high-quality generative model focused on producing vivid, dynamic, and cinematic still images using natural language prompts. It excels at atmospheric depth, expressive lighting, surreal concepts, and motion-infused compositions typical of VIDU’s visual identity.

Savings Alert33% ↓Cheaper than Fal.ai

About Text to Image

VIDU Text-to-Image Q2 is a cutting-edge generative model that transforms natural language prompts into vivid, cinematic still images with unparalleled detail. Leveraging advanced deep learning techniques, it excels in rendering atmospheric depth, expressive lighting, and surreal, motion-infused compositions that capture the essence of VIDU’s visual identity. The model seamlessly integrates technical prowess with artistic creativity, making it an ideal tool for professionals seeking to visualize dynamic and imaginative concepts. Designed for versatility and high-quality output, VIDU Text-to-Image Q2 delivers images with rich textures and ultra-realistic details even at higher resolutions. It supports various aspect ratios, ensuring that your creative vision is maintained regardless of the format. Whether used for cinematic storyboarding, digital art creation, or conceptual design, this model stands out by combining state-of-the-art technology with the intuitive simplicity of natural language input.

Interactive Savings Calculator

Estimate monthly API spend and compare absolute developer savings.

Monthly API Generations10,000 runs
50025,00050,00075,000100,000+
MuAPI Monthly Cost

$400.00

$0.04 per generation
Fal.ai Cost

$600.00

$0.06 per generation
Estimated Monthly Savings$200.00
Annual Savings$2400.00

Detailed Pricing Breakdown

ProviderEstimated RateNotes
muapiapp$0.04 per generationmuapiapp is 20-50% more affordable than its competitors while delivering comparable or superior image quality.
Fal.ai$0.06 per generationmuapiapp offers a 20-50% cost advantage over Fal.ai, providing equally impressive results at a lower price point.
Replicate$0.06 per generationmuapiapp is 20-50% more cost-effective compared to Replicate, making it a competitive choice for high-quality image generation.

Developer Integration Snippets

1import requests 2import time 3import json 4 5api_key = "YOUR_API_KEY" 6url = "https://api.muapi.ai/workflow/run/vidu-q2-text-to-image" 7 8def poll_for_result(run_id): 9 url = f"https://api.muapi.ai/workflow/run/{run_id}/api-outputs" 10 headers = { 11 "Content-Type": "application/json", 12 "x-api-key": f"{api_key}", 13 } 14 while True: 15 response = requests.get(url, headers=headers) 16 result = response.json() 17 18 if result['status'] == 'completed': 19 return json.loads(result['outputs']) 20 21 if result['status'] == 'failed': 22 raise Exception(result.get('error', 'Generation failed')) 23 24 time.sleep(5) 25 26data = { 27 "schemas": { 28 "input_data": { 29 "x-order-properties": [ 30 "prompt", 31 "aspect_ratio", 32 "resolution" 33 ], 34 "type": "object", 35 "properties": { 36 "prompt": { 37 "examples": [ 38 "A colossal floating serpent made of shimmering stardust coils around a broken moon suspended in deep space. Each scale glows with shifting nebula colors, sending ripples of light across the void. Meteor fragments drift slowly around the creature, leaving trails of violet plasma. Beneath the serpent, a crystalline ring structure orbits the shattered moon, reflecting cosmic beams in intricate patterns. The background is a star field swirling into a spiral galaxy, with vibrant energy storms crackling along the horizon. Ultra-cinematic cosmic fantasy, high contrast, 8k detail, volumetric glow, deep space atmosphere." 39 ], 40 "description": "Text prompt describing the image.", 41 "type": "string", 42 "title": "Prompt", 43 "name": "prompt" 44 }, 45 "aspect_ratio": { 46 "enum": [ 47 "16:9", 48 "9:16", 49 "1:1", 50 "4:3", 51 "3:4", 52 "2:3", 53 "3:2", 54 "21:9" 55 ], 56 "title": "Aspect Ratio", 57 "name": "aspect_ratio", 58 "type": "string", 59 "description": "Aspect ratio of the output image.", 60 "default": "1:1" 61 }, 62 "resolution": { 63 "enum": [ 64 "1k", 65 "2k", 66 "4k" 67 ], 68 "title": "Resolution", 69 "name": "resolution", 70 "type": "string", 71 "description": "The target resolution of the generated image.", 72 "default": "1k" 73 } 74 }, 75 "title": "BaseInput", 76 "required": [ 77 "prompt" 78 ], 79 "endpoint_url": "vidu-q2-text-to-image" 80 }, 81 "output_data": { 82 "x-fal-order-properties": [ 83 "images" 84 ], 85 "type": "object", 86 "properties": { 87 "video": { 88 "examples": [ 89 "https://d3adwkbyhxyrtq.cloudfront.net/webassets/videomodels/vidu-q2-text-to-image.png" 90 ], 91 "description": "The generated images", 92 "title": "Image", 93 "comparison": false 94 } 95 }, 96 "title": "ViduQ2T2I", 97 "required": [ 98 "images" 99 ] 100 } 101 } 102} 103 104headers = { 105 "Content-Type": "application/json", 106 "x-api-key": f"{api_key}", 107} 108 109response = requests.post(url, json=data, headers=headers) 110 111result = response.json() 112print("Queued:", result) 113 114outputs = poll_for_result(result["run_id"]) 115print("Completed:", outputs) 116

Model FAQ

Ready to scale your production?

Get instant access to developer keys. Integrate high-speed dynamic models in minutes with our robust SDKs.