Back to Comparison Hub/Text to Video VIP Pricing
Text to Video

Text to Video VIP API Pricing

SD 2 Text-to-Video VIP (Pro) by ByteDance. Generates high-quality cinematic video from a text prompt with priority routing, native audio-visual sync, up to 2K resolution, and 4–15 second duration.

Savings Alert-900% ↓Cheaper than Fal.ai

About Text to Video VIP

SD 2 Text-to-Video VIP (Pro) generates high-quality cinematic videos directly from text prompts using priority routing for faster queue times. Featuring native audio-visual synchronization, up to 2K resolution, and support for 4–15 second durations, this VIP tier delivers the same top-quality output as the standard pro model with reduced wait times.

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

$3000.00

$0.30/sec (pro)
Fal.ai Cost

$300.00

Not available
Estimated Monthly Savings$-2700.00
Annual Savings$-32400.00

Detailed Pricing Breakdown

ProviderEstimated RateNotes
muapiapp$0.30/sec (pro)VIP priority routing with the same high-quality output as standard pro.
Fal.aiNot availableSD 2 VIP priority tier not available.
ReplicateNot availableSD 2 VIP priority tier not available.

Developer Integration Snippets

1import requests 2import time 3import json 4 5api_key = "YOUR_API_KEY" 6url = "https://api.muapi.ai/workflow/run/seedance-2-vip-text-to-video" 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 "duration", 33 "high_bitrate" 34 ], 35 "type": "object", 36 "properties": { 37 "prompt": { 38 "type": "string", 39 "title": "Prompt", 40 "name": "prompt", 41 "description": "Text description of the video to generate. Use @character:<id> to anchor the video to a Seedance 2 character — automatically switches to image-to-video mode. Use @omni-character:<char_id> for a trained Kinovi character.", 42 "examples": [ 43 "A cinematic shot of a futuristic city at night with neon lights reflecting on wet streets." 44 ] 45 }, 46 "aspect_ratio": { 47 "enum": [ 48 "21:9", 49 "16:9", 50 "4:3", 51 "1:1", 52 "3:4", 53 "9:16" 54 ], 55 "type": "string", 56 "title": "Aspect Ratio", 57 "name": "aspect_ratio", 58 "description": "Output video aspect ratio.", 59 "default": "16:9" 60 }, 61 "duration": { 62 "type": "int", 63 "title": "Duration (seconds)", 64 "name": "duration", 65 "description": "Video duration in seconds.", 66 "default": 5, 67 "minValue": 4, 68 "maxValue": 15, 69 "step": 1 70 }, 71 "high_bitrate": { 72 "type": "boolean", 73 "title": "High Bitrate", 74 "name": "high_bitrate", 75 "description": "Enable high bitrate mode for better visual fidelity. Produces larger files.", 76 "default": false 77 } 78 }, 79 "title": "BaseInput", 80 "required": [ 81 "prompt" 82 ], 83 "endpoint_url": "seedance-2-vip-text-to-video" 84 }, 85 "output_data": { 86 "type": "object", 87 "properties": { 88 "video": { 89 "type": "string", 90 "title": "Video", 91 "description": "Generated video URL.", 92 "examples": [ 93 "https://s3.amazonaws.com/output.mp4" 94 ] 95 } 96 }, 97 "title": "Seedance2Output", 98 "required": [ 99 "video" 100 ] 101 } 102 } 103} 104 105headers = { 106 "Content-Type": "application/json", 107 "x-api-key": f"{api_key}", 108} 109 110response = requests.post(url, json=data, headers=headers) 111 112result = response.json() 113print("Queued:", result) 114 115outputs = poll_for_result(result["run_id"]) 116print("Completed:", outputs) 117

Model FAQ

Ready to scale your production?

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