# MuApi.ai > MuApi is a unified AI media generation API platform offering 100+ image, video, audio, and 3D models — Flux, Veo 3, Kling, Seedance, Hunyuan, Runway, GPT-Image, Suno, and more — through a single `x-api-key` HTTP API. Submit-then-poll pattern, transparent per-call credit pricing, no cold starts. Build advanced multimodal workflows visually or programmatically. ## Core API - [API Base](https://api.muapi.ai/api/v1): All model endpoints live under `POST https://api.muapi.ai/api/v1/{model}`. Auth via `x-api-key` header. - [OpenAPI Spec](https://api.muapi.ai/openapi.json): Machine-readable schema for every endpoint. - [API Documentation](https://muapi.ai/docs): Quick-start guides, request/response shapes, and polling pattern. - [Playground](https://muapi.ai/playground): Try every model in the browser with auto-generated forms. - [Pricing](https://muapi.ai/pricing): Per-call credit cost for every model. - [Predictions endpoint](https://api.muapi.ai/api/v1/predictions/{request_id}/result): Poll any submitted job for status (`queued`, `processing`, `completed`, `failed`). ## Category Landing Pages Each category has a dedicated landing page with comparison tables, FAQs, and a category-level llms.txt: - [AI Image Generator](https://muapi.ai/playground/group/text-to-image) · [llms.txt](https://muapi.ai/playground/group/text-to-image/llms.txt) — text-to-image (Flux, Seedream, GPT-Image, HiDream, Qwen, Reve, Midjourney) - [AI Video Generator](https://muapi.ai/playground/group/text-to-video) · [llms.txt](https://muapi.ai/playground/group/text-to-video/llms.txt) — text-to-video (Veo 3, Kling, Seedance, Hunyuan, Runway, Pixverse, Vidu, Hailuo) - [Image-to-Video](https://muapi.ai/playground/group/image-to-video) · [llms.txt](https://muapi.ai/playground/group/image-to-video/llms.txt) — animate any image - [AI Image Editor](https://muapi.ai/playground/group/image-edit) · [llms.txt](https://muapi.ai/playground/group/image-edit/llms.txt) — instruction-based image editing - [AI Video Editor](https://muapi.ai/playground/group/video-edit) · [llms.txt](https://muapi.ai/playground/group/video-edit/llms.txt) — effects, face-swap, dance, reframe - [AI Lipsync](https://muapi.ai/playground/group/lipsync) · [llms.txt](https://muapi.ai/playground/group/lipsync/llms.txt) — sync video to any audio - [AI Audio & Music](https://muapi.ai/playground/group/audio) · [llms.txt](https://muapi.ai/playground/group/audio/llms.txt) — Suno music, MMAudio sound effects ## Model Family Landing Pages Dedicated pages for specific model families with variant comparisons, pricing tables, and FAQs: - [Seedream API](https://muapi.ai/seedream) — ByteDance Seedream 5.0 Pro, 5.0 Lite, 4.5, 4.0, 3.0 text-to-image and image-edit - [Suno API](https://muapi.ai/suno) — music generation, remix, extend, mashup, vocals/instrumentals, voice cloning - [Midjourney API](https://muapi.ai/midjourney) — V7, V8, and Niji text-to-image - [Seedance 2 API](https://muapi.ai/seedance-2) — ByteDance unified audio-video generation, 26+ variants - [Seedance 2.5 API](https://muapi.ai/seedance-2.5) — ByteDance flagship 4K audio-video model - [Seedance Spicy API](https://muapi.ai/seedance-2.5-spicy) — relaxed-moderation Seedance 2 and 2.5 video generation - [Wan Spicy API](https://muapi.ai/wan-spicy) — bold, high-contrast Wan 2.7, 2.6, and 2.2 image-to-video generation - [MiniMax H3 API](https://muapi.ai/minimax-h3) — Hailuo text-to-video, image-to-video, and reference-to-video generation - [Minimax Music 3.0 API](https://muapi.ai/minimax-music-3.0) — text-to-music song and instrumental generation with lyrics support - [Veo 3 API](https://muapi.ai/veo3) — Google text-to-video and image-to-video - [Kling 3 API](https://muapi.ai/kling-3) — Kling text-to-video and image-to-video - [Grok 4.7 & Grok 4.6 API](https://muapi.ai/grok-4) — xAI multimodal reasoning models (coming soon), plus live Grok 4.3/4.5 and the full Grok Imagine image/video lineup - [AI LoRA Trainer API](https://muapi.ai/lora-trainer) — train custom LoRA adapters on Flux, FLUX.2 Klein, Qwen-Image, and Z-Image from a zip dataset - [Text to Speech API](https://muapi.ai/text-to-speech) — MiniMax Speech 2.6, Gemini 3.1 Flash/2.5 Pro TTS, and ElevenLabs single-voice and multi-speaker dialogue models - [Speech to Text API](https://muapi.ai/speech-to-text) — Whisper transcription and Gemini Audio Vision audio analysis - [Image Upscaler API](https://muapi.ai/image-upscaler) — general-purpose, SeedVR2 restoration, and Topaz premium super-resolution - [Background Remover API](https://muapi.ai/background-remover) — image and video background removal - [Grok Imagine Image 2.0 API](https://muapi.ai/grok-imagine-image-2) — xAI's next-gen image model, precise generation and multi-reference editing (coming soon) - [FLUX Kontext API](https://muapi.ai/flux-kontext) — Black Forest Labs image editing (Dev/Pro/Max) - [FLUX 3 API](https://muapi.ai/flux-3) — Black Forest Labs unified image/video/audio model, 5 variants coming soon - [Wan 3.0 API](https://muapi.ai/wan-3) — Wan text-to-image, image-edit, text-to-video, and image-to-video models - [Gemini Omni API](https://muapi.ai/gemini-omni) — Google multimodal generation - [HappyHorse 1 API](https://muapi.ai/happyhorse-1) and [HappyHorse 1.1 API](https://muapi.ai/happyhorse-1.1) ## Quick Start ```bash # 1. Submit a job curl -X POST https://api.muapi.ai/api/v1/flux-schnell-image \ -H "x-api-key: $MUAPI_API_KEY" \ -H "Content-Type: application/json" \ -d '{"prompt":"a serene mountain lake at dawn"}' # → {"request_id":"abc123","status":"processing"} # 2. Poll until completed curl https://api.muapi.ai/api/v1/predictions/abc123/result \ -H "x-api-key: $MUAPI_API_KEY" # → {"status":"completed","outputs":["https://cdn.muapi.ai/.../out.png"]} ``` Each model exposes its full input schema and language-specific snippets at `https://muapi.ai/playground/{model}/llms.txt`. ## Agent Integration - [MuApi CLI](https://github.com/SamurAIGPT/muapi-cli): `npm install -g muapi-cli` — wraps submit + poll for every model. - **MCP Server**: `muapi mcp serve` exposes all MuApi models as MCP tools (Claude Code, Cursor, custom agents). Plug-and-play media generation for agents. - [Generative Media Skills](https://github.com/SamurAIGPT/Generative-Media-Skills): Pre-built shell-script skills (image gen, video gen, lipsync, etc.) for Claude Skills. ## Agent Skill Recipes End-to-end workflow recipes the muapi assistant ships with. Each one is a natural-language SKILL.md the agent reads and executes — chains multiple muapi endpoints into a named pipeline (e.g. *photo → 3D action figure*, *product photo → cinematic 10s ad*). Fetch the catalog via `GET https://api.muapi.ai/api/v1/agent-skills`; fetch a single recipe's full body via `GET https://api.muapi.ai/api/v1/agent-skills/{name}`. No auth required. - [3d-logo-animation](https://api.muapi.ai/api/v1/agent-skills/3d-logo-animation): Transform a 2D logo into a premium 3D version and animate it with professional cinematic effects. - [action-figure-generator](https://api.muapi.ai/api/v1/agent-skills/action-figure-generator): Convert a photo of a person into a custom 3D action figure, complete with collectible toy packaging. - [ad-creative](https://api.muapi.ai/api/v1/agent-skills/ad-creative): Generate a high-converting ad creative set — hero image, ad copy variations, and platform-optimized crops for Meta, Google Display, and LinkedIn. - [amazon-product-listing](https://api.muapi.ai/api/v1/agent-skills/amazon-product-listing): Generate a complete Amazon product listing image set — hero image, lifestyle shot, infographic with features, and comparison/detail closeups optimized for Amaz… - [animal-video-generator](https://api.muapi.ai/api/v1/agent-skills/animal-video-generator): Create a hilarious and ultra-realistic video of an anthropomorphic animal acting like a human vlogger in a real-world setting. - [blog-header](https://api.muapi.ai/api/v1/agent-skills/blog-header): Create a professional, eye-catching blog post header image sized for web (1200×628) with optional title composition guidance. - [brand-kit](https://api.muapi.ai/api/v1/agent-skills/brand-kit): Generate a cohesive brand visual kit — logo concept, color palette moodboard, and typography pairing suggestions. - [brochures](https://api.muapi.ai/api/v1/agent-skills/brochures): Generate a professional multi-page brochure design — cover, inner spread, and back cover — for business, real estate, events, or product launches. - [cartoon-dance-animation](https://api.muapi.ai/api/v1/agent-skills/cartoon-dance-animation): Convert a photo of a person into a Pixar-style 3D cartoon character, then animate it using a reference dance or motion video. - [character-story-video](https://api.muapi.ai/api/v1/agent-skills/character-story-video): Create a multi-part animated story video by first establishing a consistent character and then generating sequential scenes and animating them. - [couple-grid-creator](https://api.muapi.ai/api/v1/agent-skills/couple-grid-creator): Create a stylized 6-box grid featuring a couple in various romantic poses and outfits, with each pose framed inside a unique cardboard box packaging. - [design-guide](https://api.muapi.ai/api/v1/agent-skills/design-guide): Create a comprehensive brand design guide — color palette, typography pairings, UI component previews, and visual identity rules with example mockups. - [drone-style-video](https://api.muapi.ai/api/v1/agent-skills/drone-style-video): Generate aerial drone-perspective footage — sweeping bird's-eye views, orbit shots, and flyover sequences for landscapes, architecture, and events. - [fashion-try-on](https://api.muapi.ai/api/v1/agent-skills/fashion-try-on): Virtually try on different outfits by combining a person's photo and a clothing item, then optionally generate a professional fashion model video. - [floor-plan-rendering](https://api.muapi.ai/api/v1/agent-skills/floor-plan-rendering): Design a 2D floor plan and convert it into a realistic, high-quality 3D architectural rendering. - [giant-product-showcase](https://api.muapi.ai/api/v1/agent-skills/giant-product-showcase): Create a dramatic "Giant Product" visual where a regular item is showcased as a massive, building-sized object next to a person, then optionally animate the sc… - [instagram-post](https://api.muapi.ai/api/v1/agent-skills/instagram-post): Create a polished, on-brand Instagram post — square or portrait hero image with matching caption and hashtags. - [interior-design](https://api.muapi.ai/api/v1/agent-skills/interior-design): Create professional interior design visualizations — redesign existing rooms, generate new room concepts, or visualize specific furniture styles in a space. - [interior-design-visualizer](https://api.muapi.ai/api/v1/agent-skills/interior-design-visualizer): Visualize interior design by generating an empty room and filling it with stylish furniture and decor, or by redesigning an existing room. - [jewelry-product-video](https://api.muapi.ai/api/v1/agent-skills/jewelry-product-video): Create a luxury jewelry advertisement with high-end commercial cinematography and detailed macro animation. - [keyboard-art-maker](https://api.muapi.ai/api/v1/agent-skills/keyboard-art-maker): Generate artistic top-down photos of keyboard keycaps arranged to spell out custom text messages. - [logo-branding](https://api.muapi.ai/api/v1/agent-skills/logo-branding): Design a professional logo with full branding package — primary logo, variations (dark/light/icon-only), color palette, and real-world application mockups. - [logo-generator](https://api.muapi.ai/api/v1/agent-skills/logo-generator): Quickly generate a single polished logo for any brand — fast, focused, single output with clean vector aesthetic and accurate brand name text. - [multi-angle-reshoot](https://api.muapi.ai/api/v1/agent-skills/multi-angle-reshoot): Re-render a subject or scene from multiple dramatic camera angles, such as fish-eye, bird's-eye, low-angle, and macro, while maintaining consistent identity an… - [multi-angle-shots](https://api.muapi.ai/api/v1/agent-skills/multi-angle-shots): Generate a complete set of multi-angle product shots — front, side, back, top-down, and 45-degree perspective — for comprehensive product visualization. - [music-video](https://api.muapi.ai/api/v1/agent-skills/music-video): Build a short music video from a song theme — N keyframes, animate each, generate matching music. - [one-shot-video](https://api.muapi.ai/api/v1/agent-skills/one-shot-video): Generate a single continuous cinematic shot video — no cuts, one seamless flowing scene with dramatic lighting and motion. - [product-ad-cinematic](https://api.muapi.ai/api/v1/agent-skills/product-ad-cinematic): Cinematic 5–10s product ad from a product photo + brand brief. - [product-campaign](https://api.muapi.ai/api/v1/agent-skills/product-campaign): Generate a full multi-channel product campaign — hero visuals, social media assets, short ad video, and platform-specific crops for an end-to-end launch campai… - [product-showcase-video](https://api.muapi.ai/api/v1/agent-skills/product-showcase-video): Create a dynamic product showcase with explosive ingredient arrangements, followed by a realistic motion animation. - [product-video-ad-maker](https://api.muapi.ai/api/v1/agent-skills/product-video-ad-maker): Create a high-end cinematic product video advertisement starting from a simple product photo. - [rednote-cover](https://api.muapi.ai/api/v1/agent-skills/rednote-cover): Create a Xiaohongshu (RedNote/小红书) style cover image — vibrant, lifestyle-focused, with aesthetic typography overlay suitable for the Chinese social platform. - [selfie-with-celebrities](https://api.muapi.ai/api/v1/agent-skills/selfie-with-celebrities): Generate a realistic behind-the-scenes selfie of the user with a celebrity or main actor from a specific movie, followed by an option to generate a cinematic l… - [social-pack](https://api.muapi.ai/api/v1/agent-skills/social-pack): Re-render a hero image into Instagram, TikTok, YouTube-shorts and Twitter/X aspect ratios. - [storyboard](https://api.muapi.ai/api/v1/agent-skills/storyboard): Generate N keyframes for a short story or scene sequence (image only, no video). - [talking-baby-video](https://api.muapi.ai/api/v1/agent-skills/talking-baby-video): Create a viral-style video of a talking baby with custom costumes and scripts. - [ugc-ads-workflow](https://api.muapi.ai/api/v1/agent-skills/ugc-ads-workflow): Create a User-Generated Content (UGC) video ad by combining a human selfie and a product image, then generating a video script and an animated ad. - [ugc-lifestyle-try-on](https://api.muapi.ai/api/v1/agent-skills/ugc-lifestyle-try-on): Generate UGC-style (User Generated Content) lifestyle photos of a person wearing or using your product — authentic, relatable, social-media-native imagery. - [url-to-design](https://api.muapi.ai/api/v1/agent-skills/url-to-design): Analyze a website URL and generate a redesigned, improved UI — recreate the visual design with modern aesthetics, better hierarchy, and fresh brand direction. - [youtube-thumbnail](https://api.muapi.ai/api/v1/agent-skills/youtube-thumbnail): Design a high-CTR YouTube thumbnail — striking imagery, bold text placement, and emotional face/subject if needed. ## Visual Workflows & Apps - [Workflow Builder](https://muapi.ai/workflow): React Flow drag-and-drop canvas for chaining models into multi-step pipelines (storyboard → frames → video, etc.). - [Agents](https://muapi.ai/agents): Conversational AI agents that architect workflows from natural language. - [Apps](https://muapi.ai/apps): Ready-to-run single-purpose tools built on top of MuApi. - [Gallery](https://muapi.ai/gallery): Browse example outputs across every model. - [Studio](https://muapi.ai/studio): Browser-based generation environment. ## Text-to-Image Models - **nano-banana** — `POST https://api.muapi.ai/api/v1/nano-banana` — Nano Banana is an advanced AI model excelling in natural language-driven image generation and editing. It produces hyper-realistic, physics-aware visuals with… - [Playground](https://muapi.ai/playground/nano-banana) · [llms.txt](https://muapi.ai/playground/nano-banana/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana?tab=2) - **gpt-image-2-text-to-image** — `POST https://api.muapi.ai/api/v1/gpt-image-2-text-to-image` — Generate high-quality images from text prompts using GPT Image 2, supporting up to 20,000 character prompts for detailed and precise image creation. - [Playground](https://muapi.ai/playground/gpt-image-2-text-to-image) · [llms.txt](https://muapi.ai/playground/gpt-image-2-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-image-2-text-to-image?tab=2) - **flux-dev** — `POST https://api.muapi.ai/api/v1/flux-dev` — Generate stunning visuals from simple text prompts. Flux Dev transforms your ideas into high-quality, creative images using powerful AI vision models. Perfect… - [Playground](https://muapi.ai/playground/flux-dev) · [llms.txt](https://muapi.ai/playground/flux-dev/llms.txt) · [API Reference](https://muapi.ai/playground/flux-dev?tab=2) - **flux-schnell** — `POST https://api.muapi.ai/api/v1/flux-schnell` — Flux Schnell is a lightning-fast image generation model designed for rapid iterations. It delivers good visual quality from text prompts almost instantly, maki… - [Playground](https://muapi.ai/playground/flux-schnell) · [llms.txt](https://muapi.ai/playground/flux-schnell/llms.txt) · [API Reference](https://muapi.ai/playground/flux-schnell?tab=2) - **nano-banana-pro** — `POST https://api.muapi.ai/api/v1/nano-banana-pro` — Nano Banana 2 is the next-generation image generation developed by Google DeepMind, following the original Nano Banana (also known as Gemini 2.5 Flash Image).… - [Playground](https://muapi.ai/playground/nano-banana-pro) · [llms.txt](https://muapi.ai/playground/nano-banana-pro/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana-pro?tab=2) - **nano-banana-2** — `POST https://api.muapi.ai/api/v1/nano-banana-2` — Nano Banana 2 (Gemini 3.1 Flash Image) is Google's most advanced image generation model, combining speed with high-fidelity 4K output and revolutionary charact… - [Playground](https://muapi.ai/playground/nano-banana-2) · [llms.txt](https://muapi.ai/playground/nano-banana-2/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana-2?tab=2) - **bytedance-seedream-v4.5** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-v4.5` — Seedream-v4.5 is ByteDance’s advanced text-to-image diffusion model designed for generating high-detail, high-contrast, cinematic and stylized images. It excel… - [Playground](https://muapi.ai/playground/bytedance-seedream-v4.5) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-v4.5/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-v4.5?tab=2) - **bytedance-seedream-v4** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-v4` — Seedream v4 generates stunning, high-fidelity images from text prompts. It’s designed for creativity with strong support for realism, fantasy, and artistic sty… - [Playground](https://muapi.ai/playground/bytedance-seedream-v4) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-v4/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-v4?tab=2) - **flux-2-pro** — `POST https://api.muapi.ai/api/v1/flux-2-pro` — Flux-2-Pro Text-to-Image is a premium, high-fidelity generative model capable of producing ultra-realistic, cinematic, and deeply detailed images from text pro… - [Playground](https://muapi.ai/playground/flux-2-pro) · [llms.txt](https://muapi.ai/playground/flux-2-pro/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-pro?tab=2) - **nano-banana-2-lite** — `POST https://api.muapi.ai/api/v1/nano-banana-2-lite` — Nano Banana 2 Lite (Gemini 3.1 Flash Lite Image) is Google's fastest and most cost-efficient text-to-image model, delivering 4-second generation with exception… - [Playground](https://muapi.ai/playground/nano-banana-2-lite) · [llms.txt](https://muapi.ai/playground/nano-banana-2-lite/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana-2-lite?tab=2) - **bytedance-seedream-v5.0** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-v5.0` — Seedream 5.0 Lite is ByteDance’s next-generation text-to-image model, delivering high-fidelity AI art with advanced visual reasoning and precise typography. Su… - [Playground](https://muapi.ai/playground/bytedance-seedream-v5.0) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-v5.0/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-v5.0?tab=2) - **midjourney-v8** — `POST https://api.muapi.ai/api/v1/midjourney-v8` — Generate 4 photorealistic images per run with Midjourney V8. Improved coherence and detail over V7. Supports text-to-image and reference image guidance. - [Playground](https://muapi.ai/playground/midjourney-v8) · [llms.txt](https://muapi.ai/playground/midjourney-v8/llms.txt) · [API Reference](https://muapi.ai/playground/midjourney-v8?tab=2) - **bytedance-seedream-5.0-pro** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-5.0-pro` — Seedream 5.0 Pro is ByteDance's flagship next-generation text-to-image model, extending Seedream 5.0 Lite with higher-fidelity rendering, deeper visual reasoni… - [Playground](https://muapi.ai/playground/bytedance-seedream-5.0-pro) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-5.0-pro/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-5.0-pro?tab=2) - **midjourney-v7** — `POST https://api.muapi.ai/api/v1/midjourney-v7` — Generate 4 photorealistic images per run with Midjourney V7. Supports text-to-image and reference image guidance via source_image_url. - [Playground](https://muapi.ai/playground/midjourney-v7) · [llms.txt](https://muapi.ai/playground/midjourney-v7/llms.txt) · [API Reference](https://muapi.ai/playground/midjourney-v7?tab=2) - **grok-imagine-text-to-image-quality** — `POST https://api.muapi.ai/api/v1/grok-imagine-text-to-image-quality` — Grok Imagine Quality is xAI's high-fidelity text-to-image mode that prioritizes accuracy and detail over speed. It produces sharper, more visually accurate ima… - [Playground](https://muapi.ai/playground/grok-imagine-text-to-image-quality) · [llms.txt](https://muapi.ai/playground/grok-imagine-text-to-image-quality/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-text-to-image-quality?tab=2) - **z-image-turbo** — `POST https://api.muapi.ai/api/v1/z-image-turbo` — Z-Image Turbo is a high-speed text-to-image model optimized for fast creative generation. It produces detailed, high-contrast, high-resolution images with stro… - [Playground](https://muapi.ai/playground/z-image-turbo) · [llms.txt](https://muapi.ai/playground/z-image-turbo/llms.txt) · [API Reference](https://muapi.ai/playground/z-image-turbo?tab=2) - **flux-2-dev** — `POST https://api.muapi.ai/api/v1/flux-2-dev` — Flux 2 Dev is a powerful text-to-image diffusion model designed for high-quality, fast, and highly detailed visual generation. It excels at creating cinematic… - [Playground](https://muapi.ai/playground/flux-2-dev) · [llms.txt](https://muapi.ai/playground/flux-2-dev/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-dev?tab=2) - **gpt4o-text-to-image** — `POST https://api.muapi.ai/api/v1/gpt4o-text-to-image` — Generate images from text prompts using GPT-4o's vision capabilities. Ideal for basic concept visuals, diagrams, and abstract compositions. - [Playground](https://muapi.ai/playground/gpt4o-text-to-image) · [llms.txt](https://muapi.ai/playground/gpt4o-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/gpt4o-text-to-image?tab=2) - **hidream-i1-fast** — `POST https://api.muapi.ai/api/v1/hidream-i1-fast` — Optimized for speed, this variant generates images in just a few steps. Ideal for previews, real-time applications, and use cases where fast results are more i… - [Playground](https://muapi.ai/playground/hidream-i1-fast) · [llms.txt](https://muapi.ai/playground/hidream-i1-fast/llms.txt) · [API Reference](https://muapi.ai/playground/hidream-i1-fast?tab=2) - **flux-2-klein-9b-turbo** — `POST https://api.muapi.ai/api/v1/flux-2-klein-9b-turbo` — Flux-2-Klein-9B Turbo is a high-performance, mid-size text-to-image model. This distilled variant of Klein 9B provides a superior balance of speed and detail,… - [Playground](https://muapi.ai/playground/flux-2-klein-9b-turbo) · [llms.txt](https://muapi.ai/playground/flux-2-klein-9b-turbo/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-9b-turbo?tab=2) - **flux-krea-dev** — `POST https://api.muapi.ai/api/v1/flux-krea-dev` — Flux Krea Dev is a text-to-image model built by Black Forest Labs in collaboration with Krea AI, designed to generate highly photorealistic images that avoid t… - [Playground](https://muapi.ai/playground/flux-krea-dev) · [llms.txt](https://muapi.ai/playground/flux-krea-dev/llms.txt) · [API Reference](https://muapi.ai/playground/flux-krea-dev?tab=2) - **z-image-p** — `POST https://api.muapi.ai/api/v1/z-image-p` — Z-Image P is based on PiAPI's Qubico/z-image text-to-image model. - [Playground](https://muapi.ai/playground/z-image-p) · [llms.txt](https://muapi.ai/playground/z-image-p/llms.txt) · [API Reference](https://muapi.ai/playground/z-image-p?tab=2) - **flux-2-klein-4b-turbo** — `POST https://api.muapi.ai/api/v1/flux-2-klein-4b-turbo` — Flux-2-Klein-4B Turbo is an ultra-fast, high-efficiency text-to-image model. It is a distilled version of the Klein 4B model, designed for near-instant renderi… - [Playground](https://muapi.ai/playground/flux-2-klein-4b-turbo) · [llms.txt](https://muapi.ai/playground/flux-2-klein-4b-turbo/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-4b-turbo?tab=2) - **kling-o3-image** — `POST https://api.muapi.ai/api/v1/kling-o3-image` — Generate detailed photoreal and stylised images from text prompts using Kling O3. Supports 1K/2K/4K resolutions, multiple aspect ratios, and up to 9 outputs pe… - [Playground](https://muapi.ai/playground/kling-o3-image) · [llms.txt](https://muapi.ai/playground/kling-o3-image/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o3-image?tab=2) - **chroma-image** — `POST https://api.muapi.ai/api/v1/chroma-image` — Croma Image is an advanced text-to-image generation model designed for high-quality, creative, and versatile visuals. It can produce anything from photorealist… - [Playground](https://muapi.ai/playground/chroma-image) · [llms.txt](https://muapi.ai/playground/chroma-image/llms.txt) · [API Reference](https://muapi.ai/playground/chroma-image?tab=2) - **flux-kontext-pro-t2i** — `POST https://api.muapi.ai/api/v1/flux-kontext-pro-t2i` — Flux Kontext Pro T2I offers fast and reliable generation with creative flexibility. It supports stylized prompts, character design, and fantasy themes while ma… - [Playground](https://muapi.ai/playground/flux-kontext-pro-t2i) · [llms.txt](https://muapi.ai/playground/flux-kontext-pro-t2i/llms.txt) · [API Reference](https://muapi.ai/playground/flux-kontext-pro-t2i?tab=2) - **flux-kontext-max-t2i** — `POST https://api.muapi.ai/api/v1/flux-kontext-max-t2i` — Flux Kontext Max T2I delivers photorealistic or cinematic-quality images with exceptional detail. It's optimized for high-end visuals — from realistic humans t… - [Playground](https://muapi.ai/playground/flux-kontext-max-t2i) · [llms.txt](https://muapi.ai/playground/flux-kontext-max-t2i/llms.txt) · [API Reference](https://muapi.ai/playground/flux-kontext-max-t2i?tab=2) - **qwen-image** — `POST https://api.muapi.ai/api/v1/qwen-image` — Generate high-quality, detailed images from text prompts in various styles — from realistic to artistic — perfect for creative visuals, product shots, and conc… - [Playground](https://muapi.ai/playground/qwen-image) · [llms.txt](https://muapi.ai/playground/qwen-image/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image?tab=2) - **midjourney-niji** — `POST https://api.muapi.ai/api/v1/midjourney-niji` — Generate 4 anime and illustration-style images per run with Midjourney Niji. Optimized for character art, manga, and stylized illustrations. Supports reference… - [Playground](https://muapi.ai/playground/midjourney-niji) · [llms.txt](https://muapi.ai/playground/midjourney-niji/llms.txt) · [API Reference](https://muapi.ai/playground/midjourney-niji?tab=2) - **gpt-image-1.5** — `POST https://api.muapi.ai/api/v1/gpt-image-1.5` — GPT-Image-1.5 is a high-quality text-to-image generation model designed for rich visual reasoning, detailed compositions, and strong prompt understanding. It e… - [Playground](https://muapi.ai/playground/gpt-image-1.5) · [llms.txt](https://muapi.ai/playground/gpt-image-1.5/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-image-1.5?tab=2) - **grok-imagine-text-to-image** — `POST https://api.muapi.ai/api/v1/grok-imagine-text-to-image` — Grok Imagine is xAI’s high-quality image generation model that transforms text prompts into detailed, stylish, and visually expressive images. It excels at cre… - [Playground](https://muapi.ai/playground/grok-imagine-text-to-image) · [llms.txt](https://muapi.ai/playground/grok-imagine-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-text-to-image?tab=2) - **wan2.5-text-to-image** — `POST https://api.muapi.ai/api/v1/wan2.5-text-to-image` — WAN 2.5 Text-to-Image generates high-quality, realistic or stylized images from textual descriptions. It supports detailed visual storytelling, cinematic compo… - [Playground](https://muapi.ai/playground/wan2.5-text-to-image) · [llms.txt](https://muapi.ai/playground/wan2.5-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.5-text-to-image?tab=2) - **ideogram-v3-t2i** — `POST https://api.muapi.ai/api/v1/ideogram-v3-t2i` — Ideogram v3 is an advanced text-to-image model designed for creating highly detailed and visually striking images directly from text prompts. It’s especially g… - [Playground](https://muapi.ai/playground/ideogram-v3-t2i) · [llms.txt](https://muapi.ai/playground/ideogram-v3-t2i/llms.txt) · [API Reference](https://muapi.ai/playground/ideogram-v3-t2i?tab=2) - **hidream-i1-full** — `POST https://api.muapi.ai/api/v1/hidream-i1-full` — The most advanced version of HiDream I1, delivering high-resolution, detailed images with superior prompt understanding. Best suited for production, content cr… - [Playground](https://muapi.ai/playground/hidream-i1-full) · [llms.txt](https://muapi.ai/playground/hidream-i1-full/llms.txt) · [API Reference](https://muapi.ai/playground/hidream-i1-full?tab=2) - **flux-kontext-dev-t2i** — `POST https://api.muapi.ai/api/v1/flux-kontext-dev-t2i` — Generates an image from a text prompt, with optional reference image for pose or style guidance. Ideal for controlled, consistent image creation using just a d… - [Playground](https://muapi.ai/playground/flux-kontext-dev-t2i) · [llms.txt](https://muapi.ai/playground/flux-kontext-dev-t2i/llms.txt) · [API Reference](https://muapi.ai/playground/flux-kontext-dev-t2i?tab=2) - **google-imagen4** — `POST https://api.muapi.ai/api/v1/google-imagen4` — Google Imagen 4 is the latest text-to-image AI model from DeepMind, designed to produce stunningly photorealistic images with crisp detail, accurate text rende… - [Playground](https://muapi.ai/playground/google-imagen4) · [llms.txt](https://muapi.ai/playground/google-imagen4/llms.txt) · [API Reference](https://muapi.ai/playground/google-imagen4?tab=2) - **google-imagen4-ultra** — `POST https://api.muapi.ai/api/v1/google-imagen4-ultra` — Imagen 4 Ultra is Google’s flagship model, designed for photorealism, rich textures, and production-level imagery. It produces crisp, high-resolution visuals w… - [Playground](https://muapi.ai/playground/google-imagen4-ultra) · [llms.txt](https://muapi.ai/playground/google-imagen4-ultra/llms.txt) · [API Reference](https://muapi.ai/playground/google-imagen4-ultra?tab=2) - **ai-anime-generator** — `POST https://api.muapi.ai/api/v1/ai-anime-generator` — Create stunning anime-style artwork instantly with our AI Anime Generator. Customize characters, scenes, and styles effortlessly in seconds! - [Playground](https://muapi.ai/playground/ai-anime-generator) · [llms.txt](https://muapi.ai/playground/ai-anime-generator/llms.txt) · [API Reference](https://muapi.ai/playground/ai-anime-generator?tab=2) - **perfect-pony-xl** — `POST https://api.muapi.ai/api/v1/perfect-pony-xl` — Pony XL is a high-quality image generation model based on Stable Diffusion XL architecture. It specializes in character art, hybrid styles, and producing detai… - [Playground](https://muapi.ai/playground/perfect-pony-xl) · [llms.txt](https://muapi.ai/playground/perfect-pony-xl/llms.txt) · [API Reference](https://muapi.ai/playground/perfect-pony-xl?tab=2) - **kling-o1-text-to-image** — `POST https://api.muapi.ai/api/v1/kling-o1-text-to-image` — Kling O1 Text-to-Image is a high-fidelity creative image model that converts rich natural-language prompts into ultra-detailed stills. It excels at cinematic c… - [Playground](https://muapi.ai/playground/kling-o1-text-to-image) · [llms.txt](https://muapi.ai/playground/kling-o1-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-text-to-image?tab=2) - **google-imagen4-fast** — `POST https://api.muapi.ai/api/v1/google-imagen4-fast` — Imagen 4 Fast is optimized for speed and accessibility, allowing you to generate high-quality images in seconds. While slightly less detailed than the Ultra ve… - [Playground](https://muapi.ai/playground/google-imagen4-fast) · [llms.txt](https://muapi.ai/playground/google-imagen4-fast/llms.txt) · [API Reference](https://muapi.ai/playground/google-imagen4-fast?tab=2) - **sdxl-image** — `POST https://api.muapi.ai/api/v1/sdxl-image` — SDXL is a high-quality, large Stable Diffusion model for creating photorealistic and stylized images from text. It excels at fine detail, realistic lighting, a… - [Playground](https://muapi.ai/playground/sdxl-image) · [llms.txt](https://muapi.ai/playground/sdxl-image/llms.txt) · [API Reference](https://muapi.ai/playground/sdxl-image?tab=2) - **flux-2-klein-9b** — `POST https://api.muapi.ai/api/v1/flux-2-klein-9b` — Flux-2-Klein-9B is a mid-size text-to-image model that balances detail quality and generation speed. It handles richer lighting, better textures, and more nuan… - [Playground](https://muapi.ai/playground/flux-2-klein-9b) · [llms.txt](https://muapi.ai/playground/flux-2-klein-9b/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-9b?tab=2) - **wan2.1-text-to-image** — `POST https://api.muapi.ai/api/v1/wan2.1-text-to-image` — WAN 2.1 is a powerful AI model that transforms text prompts into high-resolution, photorealistic images. It excels at detailed object rendering, realistic ligh… - [Playground](https://muapi.ai/playground/wan2.1-text-to-image) · [llms.txt](https://muapi.ai/playground/wan2.1-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.1-text-to-image?tab=2) - **z-image-base** — `POST https://api.muapi.ai/api/v1/z-image-base` — Z-Image Base is a general-purpose text-to-image model designed for reliable, high-quality image generation from natural language prompts. It focuses on clear c… - [Playground](https://muapi.ai/playground/z-image-base) · [llms.txt](https://muapi.ai/playground/z-image-base/llms.txt) · [API Reference](https://muapi.ai/playground/z-image-base?tab=2) - **wan2.7-text-to-image-pro** — `POST https://api.muapi.ai/api/v1/wan2.7-text-to-image-pro` — Alibaba WAN 2.7 Text-to-Image Pro generates high-quality images up to 4K from text prompts with thinking mode for enhanced image quality. - [Playground](https://muapi.ai/playground/wan2.7-text-to-image-pro) · [llms.txt](https://muapi.ai/playground/wan2.7-text-to-image-pro/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-text-to-image-pro?tab=2) - **leonardoai-phoenix-1.0** — `POST https://api.muapi.ai/api/v1/leonardoai-phoenix-1.0` — LeonardoAI Phoenix 1.0 is a professional-grade AI image model designed for realistic, cinematic, and highly detailed visuals. It excels at interpreting complex… - [Playground](https://muapi.ai/playground/leonardoai-phoenix-1.0) · [llms.txt](https://muapi.ai/playground/leonardoai-phoenix-1.0/llms.txt) · [API Reference](https://muapi.ai/playground/leonardoai-phoenix-1.0?tab=2) - **qwen-image-2.0-pro** — `POST https://api.muapi.ai/api/v1/qwen-image-2.0-pro` — Qwen 2.0 Pro Text to Image model with maximum realism and fidelity. - [Playground](https://muapi.ai/playground/qwen-image-2.0-pro) · [llms.txt](https://muapi.ai/playground/qwen-image-2.0-pro/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-2.0-pro?tab=2) - **wan2.7-text-to-image** — `POST https://api.muapi.ai/api/v1/wan2.7-text-to-image` — Alibaba WAN 2.7 Text-to-Image generates high-quality images from text prompts with thinking mode for enhanced image quality. - [Playground](https://muapi.ai/playground/wan2.7-text-to-image) · [llms.txt](https://muapi.ai/playground/wan2.7-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-text-to-image?tab=2) - **wan2.6-text-to-image** — `POST https://api.muapi.ai/api/v1/wan2.6-text-to-image` — WAN 2.6 Text-to-Image generates detailed, cinematic still images from text prompts. It focuses on strong composition, atmospheric lighting, and clear subject s… - [Playground](https://muapi.ai/playground/wan2.6-text-to-image) · [llms.txt](https://muapi.ai/playground/wan2.6-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.6-text-to-image?tab=2) - **flux-2-klein-4b** — `POST https://api.muapi.ai/api/v1/flux-2-klein-4b` — Flux-2-Klein-4B is a lightweight, fast text-to-image model optimized for clear subject rendering, good prompt adherence, and efficient generation. It works bes… - [Playground](https://muapi.ai/playground/flux-2-klein-4b) · [llms.txt](https://muapi.ai/playground/flux-2-klein-4b/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-4b?tab=2) - **grok-imagine-image-2** — `POST https://api.muapi.ai/api/v1/grok-imagine-image-2` — Grok Imagine Image 2.0 is xAI's next-generation image model, built for precise instruction-following, sharp typography, and detailed layout control. It follows… - [Playground](https://muapi.ai/playground/grok-imagine-image-2) · [llms.txt](https://muapi.ai/playground/grok-imagine-image-2/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-image-2?tab=2) - **bytedance-seedream-v3** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-v3` — Seedream is designed for generating visually rich and artistic images from text prompts. It excels at fantasy, anime, surrealism, and vibrant color composition… - [Playground](https://muapi.ai/playground/bytedance-seedream-v3) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-v3/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-v3?tab=2) - **qwen3-pro-text-to-image** — `POST https://api.muapi.ai/api/v1/qwen3-pro-text-to-image` — Qwen 3.0 Pro Text to Image generates high-fidelity professional photorealistic images and editorial artwork from prompts with enhanced detail. - [Playground](https://muapi.ai/playground/qwen3-pro-text-to-image) · [llms.txt](https://muapi.ai/playground/qwen3-pro-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/qwen3-pro-text-to-image?tab=2) - **reve-text-to-image** — `POST https://api.muapi.ai/api/v1/reve-text-to-image` — Generate images from text prompts using reve's vision capabilities. Ideal for basic concept visuals, diagrams, and abstract compositions. - [Playground](https://muapi.ai/playground/reve-text-to-image) · [llms.txt](https://muapi.ai/playground/reve-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/reve-text-to-image?tab=2) - **hunyuan-image-3.0** — `POST https://api.muapi.ai/api/v1/hunyuan-image-3.0` — Hunyuan Image 3.0 brings together powerful architecture (Mixture-of-Experts + autoregressive style) to produce richly detailed and coherent images from complex… - [Playground](https://muapi.ai/playground/hunyuan-image-3.0) · [llms.txt](https://muapi.ai/playground/hunyuan-image-3.0/llms.txt) · [API Reference](https://muapi.ai/playground/hunyuan-image-3.0?tab=2) - **vidu-q2-text-to-image** — `POST https://api.muapi.ai/api/v1/vidu-q2-text-to-image` — 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 exc… - [Playground](https://muapi.ai/playground/vidu-q2-text-to-image) · [llms.txt](https://muapi.ai/playground/vidu-q2-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-text-to-image?tab=2) - **hunyuan-image-2.1** — `POST https://api.muapi.ai/api/v1/hunyuan-image-2.1` — Hunyuan Image is a powerful text-to-image generation model that produces photorealistic and highly detailed visuals. It excels at creating portraits, environme… - [Playground](https://muapi.ai/playground/hunyuan-image-2.1) · [llms.txt](https://muapi.ai/playground/hunyuan-image-2.1/llms.txt) · [API Reference](https://muapi.ai/playground/hunyuan-image-2.1?tab=2) - **leonardoai-lucid-origin** — `POST https://api.muapi.ai/api/v1/leonardoai-lucid-origin` — Lucid Origin is LeonardoAI’s advanced image generation model, designed for ultra-realistic, vibrant, and highly detailed visuals. It excels at creating photore… - [Playground](https://muapi.ai/playground/leonardoai-lucid-origin) · [llms.txt](https://muapi.ai/playground/leonardoai-lucid-origin/llms.txt) · [API Reference](https://muapi.ai/playground/leonardoai-lucid-origin?tab=2) - **qwen-image-2.0** — `POST https://api.muapi.ai/api/v1/qwen-image-2.0` — Qwen 2.0 Text to Image model with enhanced realism. - [Playground](https://muapi.ai/playground/qwen-image-2.0) · [llms.txt](https://muapi.ai/playground/qwen-image-2.0/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-2.0?tab=2) - **flux-2-flex** — `POST https://api.muapi.ai/api/v1/flux-2-flex` — Flux-2-Flex Text-to-Image is a flexible, high-fidelity generative model capable of producing detailed, imaginative, and stylistically rich scenes from text alo… - [Playground](https://muapi.ai/playground/flux-2-flex) · [llms.txt](https://muapi.ai/playground/flux-2-flex/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-flex?tab=2) - **neta-lumina** — `POST https://api.muapi.ai/api/v1/neta-lumina` — Neta Lumina is a powerful anime-style text-to-image model developed by Neta.art Lab. It’s built on Lumina-Image-2.0, fine-tuned with over 13 million high-quali… - [Playground](https://muapi.ai/playground/neta-lumina) · [llms.txt](https://muapi.ai/playground/neta-lumina/llms.txt) · [API Reference](https://muapi.ai/playground/neta-lumina?tab=2) - **hidream-i1-dev** — `POST https://api.muapi.ai/api/v1/hidream-i1-dev` — Optimized for speed, this variant generates images in just a few steps. Ideal for previews, real-time applications, and use cases where fast results are more i… - [Playground](https://muapi.ai/playground/hidream-i1-dev) · [llms.txt](https://muapi.ai/playground/hidream-i1-dev/llms.txt) · [API Reference](https://muapi.ai/playground/hidream-i1-dev?tab=2) - **qwen3-text-to-image** — `POST https://api.muapi.ai/api/v1/qwen3-text-to-image` — Qwen 3.0 Text to Image generates high-fidelity photorealistic images and editorial artwork from prompts with intelligent prompt rewriting. - [Playground](https://muapi.ai/playground/qwen3-text-to-image) · [llms.txt](https://muapi.ai/playground/qwen3-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/qwen3-text-to-image?tab=2) - **tiktok-carousel** — `POST https://api.muapi.ai/api/v1/tiktok-carousel` — AI TikTok Carousel Generator — create viral TikTok carousel posts from a single text prompt. Choose a proven storytelling format (Problem-Solution, Listicle, T… - [Playground](https://muapi.ai/playground/tiktok-carousel) · [llms.txt](https://muapi.ai/playground/tiktok-carousel/llms.txt) · [API Reference](https://muapi.ai/playground/tiktok-carousel?tab=2) - **flux-3-dev** — `POST https://api.muapi.ai/api/v1/flux-3-dev` — FLUX 3 Dev is the faster, lower-cost variant of Black Forest Labs' FLUX 3 frontier model, planned for open-weight release. It trades a small amount of peak fid… - [Playground](https://muapi.ai/playground/flux-3-dev) · [llms.txt](https://muapi.ai/playground/flux-3-dev/llms.txt) · [API Reference](https://muapi.ai/playground/flux-3-dev?tab=2) - **flux-3-text-to-image** — `POST https://api.muapi.ai/api/v1/flux-3-text-to-image` — FLUX 3 Text-to-Image is Black Forest Labs' next-generation multimodal frontier model, jointly trained across image, video, and audio for outputs that are truer… - [Playground](https://muapi.ai/playground/flux-3-text-to-image) · [llms.txt](https://muapi.ai/playground/flux-3-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/flux-3-text-to-image?tab=2) - **wan3.0-text-to-image** — `POST https://api.muapi.ai/api/v1/wan3.0-text-to-image` — Wan 3.0 Text to Image is an upcoming AI image model. Confirmed API controls, output specifications, and pricing will be published at launch. - [Playground](https://muapi.ai/playground/wan3.0-text-to-image) · [llms.txt](https://muapi.ai/playground/wan3.0-text-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/wan3.0-text-to-image?tab=2) ## Image Editing & Enhancement Models - **gpt-image-2-image-to-image** — `POST https://api.muapi.ai/api/v1/gpt-image-2-image-to-image` — Transform and edit existing images using GPT Image 2 with text instructions. Supports up to 16 input images for precise style transfer, editing, and image tran… - [Playground](https://muapi.ai/playground/gpt-image-2-image-to-image) · [llms.txt](https://muapi.ai/playground/gpt-image-2-image-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-image-2-image-to-image?tab=2) - **nano-banana-2-edit** — `POST https://api.muapi.ai/api/v1/nano-banana-2-edit` — Nano Banana 2 (Gemini 3.1 Flash Image) is Google's most advanced image generation model, combining speed with high-fidelity 4K output and revolutionary charact… - [Playground](https://muapi.ai/playground/nano-banana-2-edit) · [llms.txt](https://muapi.ai/playground/nano-banana-2-edit/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana-2-edit?tab=2) - **nano-banana-pro-edit** — `POST https://api.muapi.ai/api/v1/nano-banana-pro-edit` — Nano Banana 2 Edit is the next-generation image editing model developed by Google DeepMind, following the original Nano Banana (also known as Gemini 2.5 Flash… - [Playground](https://muapi.ai/playground/nano-banana-pro-edit) · [llms.txt](https://muapi.ai/playground/nano-banana-pro-edit/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana-pro-edit?tab=2) - **bytedance-seedream-5.0-pro-edit** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-5.0-pro-edit` — Seedream 5.0 Pro Edit is ByteDance's flagship image editing model, extending Seedream 5.0 Lite Edit with higher-fidelity rendering, deeper visual reasoning, an… - [Playground](https://muapi.ai/playground/bytedance-seedream-5.0-pro-edit) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-5.0-pro-edit/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-5.0-pro-edit?tab=2) - **bytedance-seedream-v4.5-edit** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-v4.5-edit` — Seedream-v4.5 Edit allows you to transform an existing image using natural-language instructions. It preserves the core composition, lighting, and style of the… - [Playground](https://muapi.ai/playground/bytedance-seedream-v4.5-edit) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-v4.5-edit/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-v4.5-edit?tab=2) - **nano-banana-edit** — `POST https://api.muapi.ai/api/v1/nano-banana-edit` — Nano Banana is a mysterious, high-performance image model. It excels at precise, language-driven edits and consistent character preservation, allowing users to… - [Playground](https://muapi.ai/playground/nano-banana-edit) · [llms.txt](https://muapi.ai/playground/nano-banana-edit/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana-edit?tab=2) - **grok-imagine-image-to-image** — `POST https://api.muapi.ai/api/v1/grok-imagine-image-to-image` — Grok Imagine Image-to-Image transforms an existing image using natural language instructions while preserving scene structure, perspective, and lighting. It is… - [Playground](https://muapi.ai/playground/grok-imagine-image-to-image) · [llms.txt](https://muapi.ai/playground/grok-imagine-image-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-image-to-image?tab=2) - **bytedance-seedream-v5.0-edit** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-v5.0-edit` — Seedream 5.0 Lite Edit is an advanced image transformation model by ByteDance, enabling precise, controllable edits using natural language. It specializes in h… - [Playground](https://muapi.ai/playground/bytedance-seedream-v5.0-edit) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-v5.0-edit/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-v5.0-edit?tab=2) - **nano-banana-2-lite-edit** — `POST https://api.muapi.ai/api/v1/nano-banana-2-lite-edit` — Nano Banana 2 Lite Edit (Gemini 3.1 Flash Lite Image) is Google's fastest and most cost-efficient image editing model, blending up to 14 reference images with… - [Playground](https://muapi.ai/playground/nano-banana-2-lite-edit) · [llms.txt](https://muapi.ai/playground/nano-banana-2-lite-edit/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana-2-lite-edit?tab=2) - **ai-background-remover** — `POST https://api.muapi.ai/api/v1/ai-background-remover` — Instantly remove image backgrounds with pixel-perfect precision. Ideal for product photos, profile pictures, and creative projects. - [Playground](https://muapi.ai/playground/ai-background-remover) · [llms.txt](https://muapi.ai/playground/ai-background-remover/llms.txt) · [API Reference](https://muapi.ai/playground/ai-background-remover?tab=2) - **wan2.6-image-edit** — `POST https://api.muapi.ai/api/v1/wan2.6-image-edit` — WAN 2.6 Image Edit applies targeted, instruction-based edits to an existing image while preserving composition, perspective, and lighting. It’s ideal for objec… - [Playground](https://muapi.ai/playground/wan2.6-image-edit) · [llms.txt](https://muapi.ai/playground/wan2.6-image-edit/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.6-image-edit?tab=2) - **flux-kontext-pro-i2i** — `POST https://api.muapi.ai/api/v1/flux-kontext-pro-i2i` — Flux Kontext Pro I2I variant enables transforming base images into refined artwork while keeping structure intact. It’s useful for sketch refinement, visual st… - [Playground](https://muapi.ai/playground/flux-kontext-pro-i2i) · [llms.txt](https://muapi.ai/playground/flux-kontext-pro-i2i/llms.txt) · [API Reference](https://muapi.ai/playground/flux-kontext-pro-i2i?tab=2) - **flux-kontext-dev-i2i** — `POST https://api.muapi.ai/api/v1/flux-kontext-dev-i2i` — Takes an input images and transforms it based on a new prompt. Keeps structure or pose while changing style, appearance, or details. - [Playground](https://muapi.ai/playground/flux-kontext-dev-i2i) · [llms.txt](https://muapi.ai/playground/flux-kontext-dev-i2i/llms.txt) · [API Reference](https://muapi.ai/playground/flux-kontext-dev-i2i?tab=2) - **ai-image-face-swap** — `POST https://api.muapi.ai/api/v1/ai-image-face-swap` — Advanced facial recognition and blending algorithms enable precise face swaps while preserving skin tone, lighting, and facial geometry. - [Playground](https://muapi.ai/playground/ai-image-face-swap) · [llms.txt](https://muapi.ai/playground/ai-image-face-swap/llms.txt) · [API Reference](https://muapi.ai/playground/ai-image-face-swap?tab=2) - **wan2.7-image-edit-pro** — `POST https://api.muapi.ai/api/v1/wan2.7-image-edit-pro` — Alibaba WAN 2.7 Image Edit Pro performs prompt-driven image editing with multi-image reference support and up to 2K output. - [Playground](https://muapi.ai/playground/wan2.7-image-edit-pro) · [llms.txt](https://muapi.ai/playground/wan2.7-image-edit-pro/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-image-edit-pro?tab=2) - **gpt4o-image-to-image** — `POST https://api.muapi.ai/api/v1/gpt4o-image-to-image` — Transform an input image based on a new prompt — like changing style, lighting, or composition. Useful for reinterpreting visuals while keeping structure. - [Playground](https://muapi.ai/playground/gpt4o-image-to-image) · [llms.txt](https://muapi.ai/playground/gpt4o-image-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/gpt4o-image-to-image?tab=2) - **qwen-image-2.0-pro-edit** — `POST https://api.muapi.ai/api/v1/qwen-image-2.0-pro-edit` — Qwen 2.0 Pro Image Edit model with maximum precision and modifications. - [Playground](https://muapi.ai/playground/qwen-image-2.0-pro-edit) · [llms.txt](https://muapi.ai/playground/qwen-image-2.0-pro-edit/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-2.0-pro-edit?tab=2) - **ai-image-upscaler** — `POST https://api.muapi.ai/api/v1/ai-image-upscaler` — Transform blurry or pixelated images into high-definition visuals. Our AI Image Upscaler uses deep learning to reconstruct details and bring your visuals to li… - [Playground](https://muapi.ai/playground/ai-image-upscaler) · [llms.txt](https://muapi.ai/playground/ai-image-upscaler/llms.txt) · [API Reference](https://muapi.ai/playground/ai-image-upscaler?tab=2) - **topaz-image-upscale** — `POST https://api.muapi.ai/api/v1/topaz-image-upscale` — Topaz Image Upscale is a high-quality image-to-image enhancement model that increases resolution, sharpness, and detail using AI super-resolution. It improves… - [Playground](https://muapi.ai/playground/topaz-image-upscale) · [llms.txt](https://muapi.ai/playground/topaz-image-upscale/llms.txt) · [API Reference](https://muapi.ai/playground/topaz-image-upscale?tab=2) - **flux-2-klein-9b-turbo-edit** — `POST https://api.muapi.ai/api/v1/flux-2-klein-9b-turbo-edit` — Flux-2-Klein-9B Turbo Edit offers high-quality, ultra-fast image editing with superior detail retention. This high-efficiency version of Klein 9B Edit handles… - [Playground](https://muapi.ai/playground/flux-2-klein-9b-turbo-edit) · [llms.txt](https://muapi.ai/playground/flux-2-klein-9b-turbo-edit/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-9b-turbo-edit?tab=2) - **flux-kontext-max-i2i** — `POST https://api.muapi.ai/api/v1/flux-kontext-max-i2i` — Flux Kontext Max I2I in Max mode allows precise image enhancement and visual transformations while retaining the source layout. It’s powerful for retouching, p… - [Playground](https://muapi.ai/playground/flux-kontext-max-i2i) · [llms.txt](https://muapi.ai/playground/flux-kontext-max-i2i/llms.txt) · [API Reference](https://muapi.ai/playground/flux-kontext-max-i2i?tab=2) - **kling-o1-edit-image** — `POST https://api.muapi.ai/api/v1/kling-o1-edit-image` — Kling O1 Image Edit applies targeted transformations to an existing image while preserving composition, lighting, and visual consistency. Use it to replace obj… - [Playground](https://muapi.ai/playground/kling-o1-edit-image) · [llms.txt](https://muapi.ai/playground/kling-o1-edit-image/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-edit-image?tab=2) - **wan2.7-image-edit** — `POST https://api.muapi.ai/api/v1/wan2.7-image-edit` — Alibaba WAN 2.7 Image Edit performs prompt-driven image editing with support for multiple-image references. - [Playground](https://muapi.ai/playground/wan2.7-image-edit) · [llms.txt](https://muapi.ai/playground/wan2.7-image-edit/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-image-edit?tab=2) - **bytedance-seedream-v4-edit** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-v4-edit` — Seedream v4 Edit refines or transforms existing images based on a new prompt and a reference. Instead of masking, you provide a source image and describe how i… - [Playground](https://muapi.ai/playground/bytedance-seedream-v4-edit) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-v4-edit/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-v4-edit?tab=2) - **qwen-image-edit-2511** — `POST https://api.muapi.ai/api/v1/qwen-image-edit-2511` — Qwen Image Edit 2511 performs precise, instruction-driven edits on an existing image while preserving composition, lighting, and overall style. It’s well-suite… - [Playground](https://muapi.ai/playground/qwen-image-edit-2511) · [llms.txt](https://muapi.ai/playground/qwen-image-edit-2511/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-edit-2511?tab=2) - **kling-o3-image-edit** — `POST https://api.muapi.ai/api/v1/kling-o3-image-edit` — Edit and transform existing images using Kling O3 with natural language instructions. Supports up to 10 reference images, 1K/2K/4K resolutions, and up to 9 out… - [Playground](https://muapi.ai/playground/kling-o3-image-edit) · [llms.txt](https://muapi.ai/playground/kling-o3-image-edit/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o3-image-edit?tab=2) - **flux-2-pro-edit** — `POST https://api.muapi.ai/api/v1/flux-2-pro-edit` — Flux-2-Pro Edit enables precise, high-fidelity modifications to an existing image while preserving its lighting, style, mood, and composition. It’s ideal for r… - [Playground](https://muapi.ai/playground/flux-2-pro-edit) · [llms.txt](https://muapi.ai/playground/flux-2-pro-edit/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-pro-edit?tab=2) - **flux-2-dev-edit** — `POST https://api.muapi.ai/api/v1/flux-2-dev-edit` — Flux 2 Dev Edit takes an existing image and applies transformations, replacements, or style changes based on a text instruction. It preserves composition, ligh… - [Playground](https://muapi.ai/playground/flux-2-dev-edit) · [llms.txt](https://muapi.ai/playground/flux-2-dev-edit/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-dev-edit?tab=2) - **seedvr2-image-upscale** — `POST https://api.muapi.ai/api/v1/seedvr2-image-upscale` — SeedVR2 is a one-step diffusion-transformer model designed for image restoration, super-resolution, deblurring, and artifact removal. It enhances low-quality o… - [Playground](https://muapi.ai/playground/seedvr2-image-upscale) · [llms.txt](https://muapi.ai/playground/seedvr2-image-upscale/llms.txt) · [API Reference](https://muapi.ai/playground/seedvr2-image-upscale?tab=2) - **flux-pulid** — `POST https://api.muapi.ai/api/v1/flux-pulid` — Flux PuLID is an innovative image-to-image model that enables consistent face rendering across different styles or scenes—without needing any model fine-tuning… - [Playground](https://muapi.ai/playground/flux-pulid) · [llms.txt](https://muapi.ai/playground/flux-pulid/llms.txt) · [API Reference](https://muapi.ai/playground/flux-pulid?tab=2) - **gemini-omni-character** — `POST https://api.muapi.ai/api/v1/gemini-omni-character` — Generate a reusable character from a single reference image and a text description. Optionally attach a voice profile created with Gemini Omni Audio to give th… - [Playground](https://muapi.ai/playground/gemini-omni-character) · [llms.txt](https://muapi.ai/playground/gemini-omni-character/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-omni-character?tab=2) - **ai-object-eraser** — `POST https://api.muapi.ai/api/v1/ai-object-eraser` — Easily remove unwanted objects, people, or text from any image using AI. Just select the area you want to erase, and the model will intelligently fill the spac… - [Playground](https://muapi.ai/playground/ai-object-eraser) · [llms.txt](https://muapi.ai/playground/ai-object-eraser/llms.txt) · [API Reference](https://muapi.ai/playground/ai-object-eraser?tab=2) - **qwen-image-edit-plus** — `POST https://api.muapi.ai/api/v1/qwen-image-edit-plus` — Qwen Image Edit Plus is an upgraded image-editing model that supports multiple image references and superior text editing. Powered by the 20B-parameter Qwen ar… - [Playground](https://muapi.ai/playground/qwen-image-edit-plus) · [llms.txt](https://muapi.ai/playground/qwen-image-edit-plus/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-edit-plus?tab=2) - **gpt-image-1.5-edit** — `POST https://api.muapi.ai/api/v1/gpt-image-1.5-edit` — GPT-Image-1.5 Edit applies precise, instruction-based modifications to an existing image while preserving composition, lighting, perspective, and visual cohere… - [Playground](https://muapi.ai/playground/gpt-image-1.5-edit) · [llms.txt](https://muapi.ai/playground/gpt-image-1.5-edit/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-image-1.5-edit?tab=2) - **flux-2-klein-9b-edit** — `POST https://api.muapi.ai/api/v1/flux-2-klein-9b-edit` — Flux-2-Klein-9B Edit performs higher-quality image edits with better detail retention, lighting consistency, and texture handling compared to smaller variants.… - [Playground](https://muapi.ai/playground/flux-2-klein-9b-edit) · [llms.txt](https://muapi.ai/playground/flux-2-klein-9b-edit/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-9b-edit?tab=2) - **qwen3-pro-image-to-image** — `POST https://api.muapi.ai/api/v1/qwen3-pro-image-to-image` — Qwen 3.0 Pro Image to Image transforms and edits existing reference images according to text prompts with professional-grade precision. - [Playground](https://muapi.ai/playground/qwen3-pro-image-to-image) · [llms.txt](https://muapi.ai/playground/qwen3-pro-image-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/qwen3-pro-image-to-image?tab=2) - **qwen3-image-to-image** — `POST https://api.muapi.ai/api/v1/qwen3-image-to-image` — Qwen 3.0 Image to Image transforms and edits existing reference images according to text prompts with precise style and content preservation. - [Playground](https://muapi.ai/playground/qwen3-image-to-image) · [llms.txt](https://muapi.ai/playground/qwen3-image-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/qwen3-image-to-image?tab=2) - **ideogram-v3-reframe** — `POST https://api.muapi.ai/api/v1/ideogram-v3-reframe` — Ideogram V3 Reframe is a specialized image-to-image model built on Ideogram 3.0, designed to intelligently extend and adapt images across diverse aspect ratios… - [Playground](https://muapi.ai/playground/ideogram-v3-reframe) · [llms.txt](https://muapi.ai/playground/ideogram-v3-reframe/llms.txt) · [API Reference](https://muapi.ai/playground/ideogram-v3-reframe?tab=2) - **ai-product-shot** — `POST https://api.muapi.ai/api/v1/ai-product-shot` — Instantly generate studio-quality product images with AI. Upload your item photo and get clean, stylized shots perfect for e-commerce, ads, and catalogs. - [Playground](https://muapi.ai/playground/ai-product-shot) · [llms.txt](https://muapi.ai/playground/ai-product-shot/llms.txt) · [API Reference](https://muapi.ai/playground/ai-product-shot?tab=2) - **image-effects** — `POST https://api.muapi.ai/api/v1/image-effects` — AI Image Effects applies advanced visual transformations, color grading, and cinematic filters to create stunning images from a image. - [Playground](https://muapi.ai/playground/image-effects) · [llms.txt](https://muapi.ai/playground/image-effects/llms.txt) · [API Reference](https://muapi.ai/playground/image-effects?tab=2) - **seedance-2-character** — `POST https://api.muapi.ai/api/v1/seedance-2-character` — [Beta] Turn fictional character references into reusable video characters. Upload reference images and describe the outfit to get a character_id you can use in… - [Playground](https://muapi.ai/playground/seedance-2-character) · [llms.txt](https://muapi.ai/playground/seedance-2-character/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-character?tab=2) - **nano-banana-effects** — `POST https://api.muapi.ai/api/v1/nano-banana-effects` — Nano Banana Effects is a creative visual effects model designed to transform ordinary images into fun, stylized, and eye-catching results. It applies artistic… - [Playground](https://muapi.ai/playground/nano-banana-effects) · [llms.txt](https://muapi.ai/playground/nano-banana-effects/llms.txt) · [API Reference](https://muapi.ai/playground/nano-banana-effects?tab=2) - **vidu-q2-reference-to-image** — `POST https://api.muapi.ai/api/v1/vidu-q2-reference-to-image` — VIDU Reference-to-Image Q2 generates new high-quality images based on one or more reference images. It preserves the key identity, structure, or style of the r… - [Playground](https://muapi.ai/playground/vidu-q2-reference-to-image) · [llms.txt](https://muapi.ai/playground/vidu-q2-reference-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-reference-to-image?tab=2) - **wan2.5-image-edit** — `POST https://api.muapi.ai/api/v1/wan2.5-image-edit` — The Wan2.5 Edit Image model allows you to transform existing images with precision and creativity. By providing an image along with an edit prompt, you can mak… - [Playground](https://muapi.ai/playground/wan2.5-image-edit) · [llms.txt](https://muapi.ai/playground/wan2.5-image-edit/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.5-image-edit?tab=2) - **qwen-image-2.0-edit** — `POST https://api.muapi.ai/api/v1/qwen-image-2.0-edit` — Qwen 2.0 Image Edit model with precise background modification and enhancements. - [Playground](https://muapi.ai/playground/qwen-image-2.0-edit) · [llms.txt](https://muapi.ai/playground/qwen-image-2.0-edit/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-2.0-edit?tab=2) - **flux-2-klein-4b-turbo-edit** — `POST https://api.muapi.ai/api/v1/flux-2-klein-4b-turbo-edit` — Flux-2-Klein-4B Turbo Edit provides ultra-fast, instruction-based image editing. This high-efficiency variant of Klein 4B Edit is optimized for near-instant sw… - [Playground](https://muapi.ai/playground/flux-2-klein-4b-turbo-edit) · [llms.txt](https://muapi.ai/playground/flux-2-klein-4b-turbo-edit/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-4b-turbo-edit?tab=2) - **flux-kontext-effects** — `POST https://api.muapi.ai/api/v1/flux-kontext-effects` — Flux Kontext Effects is a creative image and video model that applies stylized transformations, cinematic filters, and artistic reinterpretations to your input… - [Playground](https://muapi.ai/playground/flux-kontext-effects) · [llms.txt](https://muapi.ai/playground/flux-kontext-effects/llms.txt) · [API Reference](https://muapi.ai/playground/flux-kontext-effects?tab=2) - **qwen-text-to-image-2512** — `POST https://api.muapi.ai/api/v1/qwen-text-to-image-2512` — Qwen Image Text-to-Image 2512 generates high-resolution, visually consistent images from text prompts. It focuses on strong scene structure, clean composition,… - [Playground](https://muapi.ai/playground/qwen-text-to-image-2512) · [llms.txt](https://muapi.ai/playground/qwen-text-to-image-2512/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-text-to-image-2512?tab=2) - **bytedance-seededit-v3** — `POST https://api.muapi.ai/api/v1/bytedance-seededit-v3` — Seededit allows precise edits to images using masks and prompt guidance. Whether you're replacing backgrounds, changing clothing, or inpainting missing areas,… - [Playground](https://muapi.ai/playground/bytedance-seededit-v3) · [llms.txt](https://muapi.ai/playground/bytedance-seededit-v3/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seededit-v3?tab=2) - **flux-redux** — `POST https://api.muapi.ai/api/v1/flux-redux` — Flux Redux is a transformation model that reimagines or enhances your input images while preserving their main structure and subject. It’s built for creative r… - [Playground](https://muapi.ai/playground/flux-redux) · [llms.txt](https://muapi.ai/playground/flux-redux/llms.txt) · [API Reference](https://muapi.ai/playground/flux-redux?tab=2) - **ideogram-character** — `POST https://api.muapi.ai/api/v1/ideogram-character` — Ideogram’s Character Reference model enables consistent character generation using just one reference image. Upload a clear character portrait—and you can plac… - [Playground](https://muapi.ai/playground/ideogram-character) · [llms.txt](https://muapi.ai/playground/ideogram-character/llms.txt) · [API Reference](https://muapi.ai/playground/ideogram-character?tab=2) - **bytedance-seedream-5.0-pro-layer** — `POST https://api.muapi.ai/api/v1/bytedance-seedream-5.0-pro-layer` — Decompose complex images into clean, editable multi-layer assets with ByteDance Seedream 5 Pro Layer Decomposition. - [Playground](https://muapi.ai/playground/bytedance-seedream-5.0-pro-layer) · [llms.txt](https://muapi.ai/playground/bytedance-seedream-5.0-pro-layer/llms.txt) · [API Reference](https://muapi.ai/playground/bytedance-seedream-5.0-pro-layer?tab=2) - **minimax-image-01-subject-reference** — `POST https://api.muapi.ai/api/v1/minimax-image-01-subject-reference` — Minimax’s I2I “Subject Reference” model enables you to transform images while preserving the appearance of a subject using a single reference image. Ideal for… - [Playground](https://muapi.ai/playground/minimax-image-01-subject-reference) · [llms.txt](https://muapi.ai/playground/minimax-image-01-subject-reference/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-image-01-subject-reference?tab=2) - **ai-skin-enhancer** — `POST https://api.muapi.ai/api/v1/ai-skin-enhancer` — Smooth skin, reduce blemishes, and enhance complexion with natural-looking results. Perfect for portraits, selfies, and professional photo retouching. - [Playground](https://muapi.ai/playground/ai-skin-enhancer) · [llms.txt](https://muapi.ai/playground/ai-skin-enhancer/llms.txt) · [API Reference](https://muapi.ai/playground/ai-skin-enhancer?tab=2) - **flux-2-klein-4b-edit** — `POST https://api.muapi.ai/api/v1/flux-2-klein-4b-edit` — Flux-2-Klein-4B Edit applies lightweight, instruction-based edits to an existing image. It’s best for clear object swaps, small visual changes, and cute enhanc… - [Playground](https://muapi.ai/playground/flux-2-klein-4b-edit) · [llms.txt](https://muapi.ai/playground/flux-2-klein-4b-edit/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-4b-edit?tab=2) - **gpt4o-edit** — `POST https://api.muapi.ai/api/v1/gpt4o-edit` — Edit a specific part of an image using natural language. Ideal for object removal, replacement, or content-aware filling. - [Playground](https://muapi.ai/playground/gpt4o-edit) · [llms.txt](https://muapi.ai/playground/gpt4o-edit/llms.txt) · [API Reference](https://muapi.ai/playground/gpt4o-edit?tab=2) - **ai-dress-change** — `POST https://api.muapi.ai/api/v1/ai-dress-change` — Instantly change outfits in images using AI. Visualize different clothing styles without the need for physical trials—perfect for fashion, e-commerce, and virt… - [Playground](https://muapi.ai/playground/ai-dress-change) · [llms.txt](https://muapi.ai/playground/ai-dress-change/llms.txt) · [API Reference](https://muapi.ai/playground/ai-dress-change?tab=2) - **ai-image-extension** — `POST https://api.muapi.ai/api/v1/ai-image-extension` — Expand the edges of any image with AI. This model continues your original photo or artwork beyond its borders while matching style, lighting, and content. - [Playground](https://muapi.ai/playground/ai-image-extension) · [llms.txt](https://muapi.ai/playground/ai-image-extension/llms.txt) · [API Reference](https://muapi.ai/playground/ai-image-extension?tab=2) - **flux-2-flex-edit** — `POST https://api.muapi.ai/api/v1/flux-2-flex-edit` — Flux-2-Flex Edit allows flexible transformation of an existing image: object replacement, material changes, lighting adjustments, style shifts, or localized ed… - [Playground](https://muapi.ai/playground/flux-2-flex-edit) · [llms.txt](https://muapi.ai/playground/flux-2-flex-edit/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-flex-edit?tab=2) - **ai-product-photography** — `POST https://api.muapi.ai/api/v1/ai-product-photography` — Create professional-grade product photos using AI. Upload your item image and describe it with a prompt, and get studio-style, lifestyle, or creative backgroun… - [Playground](https://muapi.ai/playground/ai-product-photography) · [llms.txt](https://muapi.ai/playground/ai-product-photography/llms.txt) · [API Reference](https://muapi.ai/playground/ai-product-photography?tab=2) - **add-image-watermark** — `POST https://api.muapi.ai/api/v1/add-image-watermark` — Add custom watermark to images with adjustable position, opacity, and size. Free local processing using PIL. - [Playground](https://muapi.ai/playground/add-image-watermark) · [llms.txt](https://muapi.ai/playground/add-image-watermark/llms.txt) · [API Reference](https://muapi.ai/playground/add-image-watermark?tab=2) - **reve-image-edit** — `POST https://api.muapi.ai/api/v1/reve-image-edit` — ReVE Edit is a next-generation image editing model that allows users to apply detailed visual transformations through natural language. Whether you want to res… - [Playground](https://muapi.ai/playground/reve-image-edit) · [llms.txt](https://muapi.ai/playground/reve-image-edit/llms.txt) · [API Reference](https://muapi.ai/playground/reve-image-edit?tab=2) - **photo-pack** — `POST https://api.muapi.ai/api/v1/photo-pack` — Generate a pack of high-quality, professional portraits in various styles (LinkedIn, CEO, Tinder, etc.) while preserving your facial features. - [Playground](https://muapi.ai/playground/photo-pack) · [llms.txt](https://muapi.ai/playground/photo-pack/llms.txt) · [API Reference](https://muapi.ai/playground/photo-pack?tab=2) - **ai-color-photo** — `POST https://api.muapi.ai/api/v1/ai-color-photo` — Automatically add lifelike colors to black-and-white images. Our AI brings history to life with natural tones, accurate shading, and context-aware colorization. - [Playground](https://muapi.ai/playground/ai-color-photo) · [llms.txt](https://muapi.ai/playground/ai-color-photo/llms.txt) · [API Reference](https://muapi.ai/playground/ai-color-photo?tab=2) - **ai-ghibli-style** — `POST https://api.muapi.ai/api/v1/ai-ghibli-style` — Bring your imagination to life with art inspired by the enchanting world of Studio Ghibli. This AI model generates dreamy, hand-drawn visuals with soft colors,… - [Playground](https://muapi.ai/playground/ai-ghibli-style) · [llms.txt](https://muapi.ai/playground/ai-ghibli-style/llms.txt) · [API Reference](https://muapi.ai/playground/ai-ghibli-style?tab=2) - **portrait-stylist** — `POST https://api.muapi.ai/api/v1/portrait-stylist` — Professional AI portrait styles including hair, makeup, style, and fashion transformations. - [Playground](https://muapi.ai/playground/portrait-stylist) · [llms.txt](https://muapi.ai/playground/portrait-stylist/llms.txt) · [API Reference](https://muapi.ai/playground/portrait-stylist?tab=2) - **face-expression-change** — `POST https://api.muapi.ai/api/v1/face-expression-change` — Change face expressions and camera angles using Qwen Image Edit with predefined angle and expression LoRA weights. - [Playground](https://muapi.ai/playground/face-expression-change) · [llms.txt](https://muapi.ai/playground/face-expression-change/llms.txt) · [API Reference](https://muapi.ai/playground/face-expression-change?tab=2) - **flux-3-image-to-image** — `POST https://api.muapi.ai/api/v1/flux-3-image-to-image` — FLUX 3 Image-to-Image edits and restyles existing images using a text instruction plus up to several reference images. Built on Black Forest Labs' unified mult… - [Playground](https://muapi.ai/playground/flux-3-image-to-image) · [llms.txt](https://muapi.ai/playground/flux-3-image-to-image/llms.txt) · [API Reference](https://muapi.ai/playground/flux-3-image-to-image?tab=2) - **grok-imagine-image-2-edit** — `POST https://api.muapi.ai/api/v1/grok-imagine-image-2-edit` — Grok Imagine Image 2.0 Edit applies a targeted, natural-language edit to a prior Grok Imagine Image 2.0 generation, changing only the described region while pr… - [Playground](https://muapi.ai/playground/grok-imagine-image-2-edit) · [llms.txt](https://muapi.ai/playground/grok-imagine-image-2-edit/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-image-2-edit?tab=2) - **qwen-image-edit** — `POST https://api.muapi.ai/api/v1/qwen-image-edit` — The Qwen Edit Image Model allows you to modify existing images using text-based editing prompts. Instead of generating from scratch, you can upload a base imag… - [Playground](https://muapi.ai/playground/qwen-image-edit) · [llms.txt](https://muapi.ai/playground/qwen-image-edit/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-edit?tab=2) - **wan3.0-image-edit** — `POST https://api.muapi.ai/api/v1/wan3.0-image-edit` — Wan 3.0 Image Edit is an upcoming AI image-editing model. Confirmed API controls, output specifications, and pricing will be published at launch. - [Playground](https://muapi.ai/playground/wan3.0-image-edit) · [llms.txt](https://muapi.ai/playground/wan3.0-image-edit/llms.txt) · [API Reference](https://muapi.ai/playground/wan3.0-image-edit?tab=2) ## Text-to-Video Models - **veo3-fast-text-to-video** — `POST https://api.muapi.ai/api/v1/veo3-fast-text-to-video` — VEO3 Fast T2V creates short videos from text instantly, balancing speed and quality for quick content generation and prototyping. - [Playground](https://muapi.ai/playground/veo3-fast-text-to-video) · [llms.txt](https://muapi.ai/playground/veo3-fast-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3-fast-text-to-video?tab=2) - **seedance-lite-t2v** — `POST https://api.muapi.ai/api/v1/seedance-lite-t2v` — Seedance Lite T2V offers quick video generation from text with decent visual quality and motion. Ideal for fast previews, prototyping, or lightweight use cases… - [Playground](https://muapi.ai/playground/seedance-lite-t2v) · [llms.txt](https://muapi.ai/playground/seedance-lite-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-lite-t2v?tab=2) - **grok-imagine-text-to-video** — `POST https://api.muapi.ai/api/v1/grok-imagine-text-to-video` — Grok Imagine is xAI’s fast, creative text-to-video model that generates cinematic clips from 6 to 30 seconds with smooth motion, expressive lighting, and ambie… - [Playground](https://muapi.ai/playground/grok-imagine-text-to-video) · [llms.txt](https://muapi.ai/playground/grok-imagine-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-text-to-video?tab=2) - **seedance-2-t2v** — `POST https://api.muapi.ai/api/v1/seedance-2-t2v` — SD 2.0 is the latest multimodal video generation model by ByteDance, offering advanced camera control, native audio-video sync, and high-resolution output. - [Playground](https://muapi.ai/playground/seedance-2-t2v) · [llms.txt](https://muapi.ai/playground/seedance-2-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-t2v?tab=2) - **seedance-2-mini-omni-reference** — `POST https://api.muapi.ai/api/v1/seedance-2-mini-omni-reference` — Seedance 2 Mini Omni Reference generates video from a text prompt with optional image, video, and audio references. Cost-efficient mini-tier model for referenc… - [Playground](https://muapi.ai/playground/seedance-2-mini-omni-reference) · [llms.txt](https://muapi.ai/playground/seedance-2-mini-omni-reference/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-mini-omni-reference?tab=2) - **seedance-pro-t2v** — `POST https://api.muapi.ai/api/v1/seedance-pro-t2v` — Seedance Pro delivers high-fidelity video generation from text, producing rich visuals, smooth camera movement, and realistic scenes. Best for storytelling, co… - [Playground](https://muapi.ai/playground/seedance-pro-t2v) · [llms.txt](https://muapi.ai/playground/seedance-pro-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-pro-t2v?tab=2) - **seedance-2.5-text-to-video-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-text-to-video-480p` — Seedance 2.5 Text-to-Video 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution — faster and more cost-effective than the 720p… - [Playground](https://muapi.ai/playground/seedance-2.5-text-to-video-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-text-to-video-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-text-to-video-480p?tab=2) - **veo3.1-lite-text-to-video** — `POST https://api.muapi.ai/api/v1/veo3.1-lite-text-to-video` — Veo 3.1 Lite is a lightweight variant of Google's Veo 3.1 model designed for faster, more accessible video generation. - [Playground](https://muapi.ai/playground/veo3.1-lite-text-to-video) · [llms.txt](https://muapi.ai/playground/veo3.1-lite-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-lite-text-to-video?tab=2) - **seedance-2.5-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2.5-text-to-video` — Seedance 2.5 Text-to-Video is the early-access preview build of the Seedance 2.5 family, generating cinematic video directly from a detailed text prompt. It su… - [Playground](https://muapi.ai/playground/seedance-2.5-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2.5-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-text-to-video?tab=2) - **kling-v3.0-pro-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-pro-text-to-video` — Kling 3.0 Pro is a high-end video generation model capable of producing longer, smoother, and more realistic cinematic videos with strong motion consistency. I… - [Playground](https://muapi.ai/playground/kling-v3.0-pro-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-pro-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-pro-text-to-video?tab=2) - **seedance-2-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-text-to-video` — SD 2 Text-to-Video (Pro) by ByteDance. Generates high-quality cinematic video from a text prompt with native audio-visual sync, up to 2K resolution, and 4–15 s… - [Playground](https://muapi.ai/playground/seedance-2-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-text-to-video?tab=2) - **seedance-pro-t2v-fast** — `POST https://api.muapi.ai/api/v1/seedance-pro-t2v-fast` — Seedance Pro Fast is ByteDance’s advanced text-to-video model that turns natural-language prompts into short, cinematic video clips with realistic motion, came… - [Playground](https://muapi.ai/playground/seedance-pro-t2v-fast) · [llms.txt](https://muapi.ai/playground/seedance-pro-t2v-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-pro-t2v-fast?tab=2) - **seedance-2-mini-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-mini-text-to-video` — Seedance 2.0 Mini Text-to-Video is the fastest and most affordable text-to-video model in the Seedance lineup, generating smooth 720p video clips from text pro… - [Playground](https://muapi.ai/playground/seedance-2-mini-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-mini-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-mini-text-to-video?tab=2) - **wan2.2-5b-fast-t2v** — `POST https://api.muapi.ai/api/v1/wan2.2-5b-fast-t2v` — Wan 2.2 Fast is a lightweight, high-speed version of the Wan 2.2 model, optimized for quick text-to-video generation. It trades some cinematic detail for rapid… - [Playground](https://muapi.ai/playground/wan2.2-5b-fast-t2v) · [llms.txt](https://muapi.ai/playground/wan2.2-5b-fast-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.2-5b-fast-t2v?tab=2) - **seedance-2-text-to-video-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-text-to-video-fast` — SD 2 Text-to-Video (Fast) by ByteDance. Generates video from text at faster speeds with 4–15 second duration and 2K resolution. - [Playground](https://muapi.ai/playground/seedance-2-text-to-video-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-text-to-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-text-to-video-fast?tab=2) - **veo3-text-to-video** — `POST https://api.muapi.ai/api/v1/veo3-text-to-video` — VEO3 T2V generates cinematic videos from text prompts, capturing dynamic motion, rich scenes, and storytelling visuals in stunning detail. - [Playground](https://muapi.ai/playground/veo3-text-to-video) · [llms.txt](https://muapi.ai/playground/veo3-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3-text-to-video?tab=2) - **veo3.1-fast-text-to-video** — `POST https://api.muapi.ai/api/v1/veo3.1-fast-text-to-video` — Veo 3.1 Fast T2V is a high-speed AI video model that transforms text prompts into realistic 8-second videos. It emphasizes rapid generation while maintaining v… - [Playground](https://muapi.ai/playground/veo3.1-fast-text-to-video) · [llms.txt](https://muapi.ai/playground/veo3.1-fast-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-fast-text-to-video?tab=2) - **kling-v3.0-standard-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-standard-text-to-video` — Kling 3.0 Standard Text-to-Video generates smooth, realistic videos from text with stable motion and natural behavior. It works best with clear subjects, simpl… - [Playground](https://muapi.ai/playground/kling-v3.0-standard-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-standard-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-standard-text-to-video?tab=2) - **kling-v2.1-master-t2v** — `POST https://api.muapi.ai/api/v1/kling-v2.1-master-t2v` — Kling 2.1 Master’s T2V mode allows users to generate vivid, high-quality videos from detailed text prompts. It supports dynamic scenes, natural motion, and cin… - [Playground](https://muapi.ai/playground/kling-v2.1-master-t2v) · [llms.txt](https://muapi.ai/playground/kling-v2.1-master-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.1-master-t2v?tab=2) - **seedance-2-extend** — `POST https://api.muapi.ai/api/v1/seedance-2-extend` — SD 2.0 Extend Video continues an existing SD 2.0 generated video seamlessly. Provide the original request ID and an optional prompt to guide the extension — th… - [Playground](https://muapi.ai/playground/seedance-2-extend) · [llms.txt](https://muapi.ai/playground/seedance-2-extend/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-extend?tab=2) - **kling-v2.5-turbo-pro-t2v** — `POST https://api.muapi.ai/api/v1/kling-v2.5-turbo-pro-t2v` — Kling 2.5 Turbo Pro: Top-tier text-to-video generation with unparalleled motion fluidity, cinematic visuals, and exceptional prompt precision. - [Playground](https://muapi.ai/playground/kling-v2.5-turbo-pro-t2v) · [llms.txt](https://muapi.ai/playground/kling-v2.5-turbo-pro-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.5-turbo-pro-t2v?tab=2) - **veo3.1-text-to-video** — `POST https://api.muapi.ai/api/v1/veo3.1-text-to-video` — Veo 3.1 is Google's advanced AI video generation model that transforms text prompts into high-quality videos. This model offers enhanced realism, richer audio,… - [Playground](https://muapi.ai/playground/veo3.1-text-to-video) · [llms.txt](https://muapi.ai/playground/veo3.1-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-text-to-video?tab=2) - **seedance-v1.5-pro-t2v-fast** — `POST https://api.muapi.ai/api/v1/seedance-v1.5-pro-t2v-fast` — Seedance v1.5 Pro Text-to-Video Fast generates short cinematic videos directly from text with an emphasis on speed and stability. It produces coherent scenes w… - [Playground](https://muapi.ai/playground/seedance-v1.5-pro-t2v-fast) · [llms.txt](https://muapi.ai/playground/seedance-v1.5-pro-t2v-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-v1.5-pro-t2v-fast?tab=2) - **seedance-v1.5-pro-t2v** — `POST https://api.muapi.ai/api/v1/seedance-v1.5-pro-t2v` — Seedance v1.5 Pro Text-to-Video generates high-quality cinematic videos directly from text prompts. It focuses on smooth motion, rich atmosphere, and coherent… - [Playground](https://muapi.ai/playground/seedance-v1.5-pro-t2v) · [llms.txt](https://muapi.ai/playground/seedance-v1.5-pro-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-v1.5-pro-t2v?tab=2) - **seedance-2-t2v-480p** — `POST https://api.muapi.ai/api/v1/seedance-2-t2v-480p` — SD 2.0 480p text-to-video generation. Faster and more cost-effective than the 720p variant, ideal for previews and drafts. - [Playground](https://muapi.ai/playground/seedance-2-t2v-480p) · [llms.txt](https://muapi.ai/playground/seedance-2-t2v-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-t2v-480p?tab=2) - **runway-text-to-video** — `POST https://api.muapi.ai/api/v1/runway-text-to-video` — Generate short, high-quality videos from plain text prompts. RunwayML’s text-to-video model interprets your written description and animates it into a moving v… - [Playground](https://muapi.ai/playground/runway-text-to-video) · [llms.txt](https://muapi.ai/playground/runway-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/runway-text-to-video?tab=2) - **openai-sora-2-text-to-video** — `POST https://api.muapi.ai/api/v1/openai-sora-2-text-to-video` — Sora 2 T2V converts text prompts into short, dynamic 10-second video clips with synchronized audio. Users can describe scenes, motion, camera angles, and sound… - [Playground](https://muapi.ai/playground/openai-sora-2-text-to-video) · [llms.txt](https://muapi.ai/playground/openai-sora-2-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/openai-sora-2-text-to-video?tab=2) - **seedance-2-mini-spicy-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-mini-spicy-text-to-video` — Seedance 2 Mini Spicy Text-to-Video is the fastest, lowest-cost Spicy-tier text-to-video generation, with reduced content-safety filtering on top of Seedance 2… - [Playground](https://muapi.ai/playground/seedance-2-mini-spicy-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-mini-spicy-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-mini-spicy-text-to-video?tab=2) - **kling-v2.6-pro-t2v** — `POST https://api.muapi.ai/api/v1/kling-v2.6-pro-t2v` — Kling-v2.6-Pro Text-to-Video generates high-fidelity cinematic videos directly from text prompts. It excels at complex compositions, dramatic lighting, fluid c… - [Playground](https://muapi.ai/playground/kling-v2.6-pro-t2v) · [llms.txt](https://muapi.ai/playground/kling-v2.6-pro-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.6-pro-t2v?tab=2) - **seedance-2.5-spicy-text-to-video-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-text-to-video-480p` — Seedance 2.5 Text-to-Video 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution — faster and more cost-effective than the 720p… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-480p?tab=2) - **motion-graphics** — `POST https://api.muapi.ai/api/v1/motion-graphics` — Generate animated motion graphics videos from a text prompt using AI-generated React/Remotion code rendered on Modal. - [Playground](https://muapi.ai/playground/motion-graphics) · [llms.txt](https://muapi.ai/playground/motion-graphics/llms.txt) · [API Reference](https://muapi.ai/playground/motion-graphics?tab=2) - **hunyuan-fast-text-to-video** — `POST https://api.muapi.ai/api/v1/hunyuan-fast-text-to-video` — Hunyuan Fast T2V provides accelerated video generation from text prompts with slightly reduced detail but excellent speed. Ideal for rapid prototyping, concept… - [Playground](https://muapi.ai/playground/hunyuan-fast-text-to-video) · [llms.txt](https://muapi.ai/playground/hunyuan-fast-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/hunyuan-fast-text-to-video?tab=2) - **wan2.6-text-to-video** — `POST https://api.muapi.ai/api/v1/wan2.6-text-to-video` — WAN 2.6 Text-to-Video generates smooth, cinematic videos directly from text prompts. It’s designed for strong scene coherence, atmospheric depth, and fluid cam… - [Playground](https://muapi.ai/playground/wan2.6-text-to-video) · [llms.txt](https://muapi.ai/playground/wan2.6-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.6-text-to-video?tab=2) - **seedance-2-vip-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-text-to-video` — 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… - [Playground](https://muapi.ai/playground/seedance-2-vip-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-text-to-video?tab=2) - **kling-v3-turbo-standard-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3-turbo-standard-text-to-video` — Generate fast, high-quality videos from text prompts using Kling v3 Turbo Standard (720p). Supports durations from 3 to 15 seconds and multiple aspect ratios. - [Playground](https://muapi.ai/playground/kling-v3-turbo-standard-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3-turbo-standard-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3-turbo-standard-text-to-video?tab=2) - **seedance-2-spicy-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-spicy-text-to-video` — Seedance 2 Spicy Text-to-Video by ByteDance. Same VIP-tier priority routing, native audio-visual sync, and up to 2K resolution as Seedance 2 VIP, with reduced… - [Playground](https://muapi.ai/playground/seedance-2-spicy-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-spicy-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-spicy-text-to-video?tab=2) - **kling-v3.0-omni-pro-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-omni-pro-text-to-video` — Kling v3 Omni at 1080P. Multi-image reference video generation — supply up to 4 images and reference them in your prompt with <<>>. Apimart-backed. - [Playground](https://muapi.ai/playground/kling-v3.0-omni-pro-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-omni-pro-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-omni-pro-text-to-video?tab=2) - **wan2.2-text-to-video** — `POST https://api.muapi.ai/api/v1/wan2.2-text-to-video` — Wan 2.2’s T2V mode transforms descriptive text prompts into high-quality, stylized video sequences. It excels at generating anime-style or cinematic visuals wi… - [Playground](https://muapi.ai/playground/wan2.2-text-to-video) · [llms.txt](https://muapi.ai/playground/wan2.2-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.2-text-to-video?tab=2) - **minimax-h3-text-to-video** — `POST https://api.muapi.ai/api/v1/minimax-h3-text-to-video` — MiniMax H3 Text to Video creates video from a written prompt through the Muapi API. - [Playground](https://muapi.ai/playground/minimax-h3-text-to-video) · [llms.txt](https://muapi.ai/playground/minimax-h3-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-h3-text-to-video?tab=2) - **seedance-2-vip-text-to-video-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-text-to-video-1080p` — SD 2 Text-to-Video VIP 1080p by ByteDance. Generates cinematic 1080p video from a text prompt with priority routing, native audio-visual sync, and 4–15 second… - [Playground](https://muapi.ai/playground/seedance-2-vip-text-to-video-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-text-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-text-to-video-1080p?tab=2) - **seedance-2.5-spicy-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-text-to-video` — Seedance 2.5 Spicy Text-to-Video is the relaxed-moderation variant of the Seedance 2.5 flagship model, generating photorealistic 4K cinematic video directly fr… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video?tab=2) - **wan2.1-text-to-video** — `POST https://api.muapi.ai/api/v1/wan2.1-text-to-video` — WAN 2.1 turns your written prompts into vivid, cinematic video clips. Ideal for storytelling, content creation, and visualizing abstract ideas, it supports det… - [Playground](https://muapi.ai/playground/wan2.1-text-to-video) · [llms.txt](https://muapi.ai/playground/wan2.1-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.1-text-to-video?tab=2) - **seedance-2.5-intl-text-to-video-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-text-to-video-480p` — Seedance 2.5 Text-to-Video 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution — faster and more cost-effective than the 720p… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-480p?tab=2) - **kling-v3-turbo-pro-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3-turbo-pro-text-to-video` — Generate fast, high-quality videos from text prompts using Kling v3 Turbo Pro (1080p). Supports durations from 3 to 15 seconds and multiple aspect ratios. - [Playground](https://muapi.ai/playground/kling-v3-turbo-pro-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3-turbo-pro-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3-turbo-pro-text-to-video?tab=2) - **seedance-2-spicy-text-to-video-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-spicy-text-to-video-fast` — Seedance 2 Spicy Text-to-Video Fast by ByteDance. The quickest Spicy-tier text-to-video generation, with reduced content-safety filtering and the same fast que… - [Playground](https://muapi.ai/playground/seedance-2-spicy-text-to-video-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-spicy-text-to-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-spicy-text-to-video-fast?tab=2) - **wan2.5-text-to-video-fast** — `POST https://api.muapi.ai/api/v1/wan2.5-text-to-video-fast` — Transform text prompts into short, cinematic videos with natural motion, realistic environments, and dynamic camera perspectives. Fast mode delivers quick, hig… - [Playground](https://muapi.ai/playground/wan2.5-text-to-video-fast) · [llms.txt](https://muapi.ai/playground/wan2.5-text-to-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.5-text-to-video-fast?tab=2) - **seedance-2-vip-extend** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-extend` — SD 2.0 VIP Extend Video continues an existing SD 2.0 generated video seamlessly at 720p. Provide the original request ID and an optional prompt to guide the ex… - [Playground](https://muapi.ai/playground/seedance-2-vip-extend) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-extend/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-extend?tab=2) - **wan2.7-text-to-video** — `POST https://api.muapi.ai/api/v1/wan2.7-text-to-video` — Alibaba WAN 2.7 Text-to-Video turns plain prompts into coherent, cinematic clips. - [Playground](https://muapi.ai/playground/wan2.7-text-to-video) · [llms.txt](https://muapi.ai/playground/wan2.7-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-text-to-video?tab=2) - **openai-sora** — `POST https://api.muapi.ai/api/v1/openai-sora` — Sora is a text-to-video generative AI model developed by OpenAI. It can generate short video clips based on descriptive text inputs, producing content that ran… - [Playground](https://muapi.ai/playground/openai-sora) · [llms.txt](https://muapi.ai/playground/openai-sora/llms.txt) · [API Reference](https://muapi.ai/playground/openai-sora?tab=2) - **wan2.5-text-to-video** — `POST https://api.muapi.ai/api/v1/wan2.5-text-to-video` — WAN 2.5 Text-to-Video transforms written prompts into cinematic video clips with dynamic motion, realistic physics, and natural animation. It can also generate… - [Playground](https://muapi.ai/playground/wan2.5-text-to-video) · [llms.txt](https://muapi.ai/playground/wan2.5-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.5-text-to-video?tab=2) - **kling-o1-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-o1-text-to-video` — Kling O1 is a unified, multi-modal video generation engine that transforms natural language prompts into short cinematic video clips. It supports text-to-video… - [Playground](https://muapi.ai/playground/kling-o1-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-o1-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-text-to-video?tab=2) - **gemini-omni-text-to-video** — `POST https://api.muapi.ai/api/v1/gemini-omni-text-to-video` — Gemini Omni — natively multimodal any-to-any model. Generates high-fidelity video with synchronized audio directly from text prompts, with unified reasoning ac… - [Playground](https://muapi.ai/playground/gemini-omni-text-to-video) · [llms.txt](https://muapi.ai/playground/gemini-omni-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-omni-text-to-video?tab=2) - **minimax-h3-open-text-to-video** — `POST https://api.muapi.ai/api/v1/minimax-h3-open-text-to-video` — MiniMax H3 Open Text to Video generates coherent videos with native audio from text prompts, supporting 480p/768p resolution and 5-15s duration. - [Playground](https://muapi.ai/playground/minimax-h3-open-text-to-video) · [llms.txt](https://muapi.ai/playground/minimax-h3-open-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-h3-open-text-to-video?tab=2) - **ltx-2-fast-text-to-video** — `POST https://api.muapi.ai/api/v1/ltx-2-fast-text-to-video` — LTX Video Fast is a speed-optimised mode of Lightricks’ video-generation engine, supporting text-to-video workflows. It allows you to input a descriptive promp… - [Playground](https://muapi.ai/playground/ltx-2-fast-text-to-video) · [llms.txt](https://muapi.ai/playground/ltx-2-fast-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2-fast-text-to-video?tab=2) - **seedance-2-vip-text-to-video-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-text-to-video-fast` — SD 2 Text-to-Video VIP Fast by ByteDance. Faster generation with priority routing from a text prompt, 4–15 second duration and 2K resolution. - [Playground](https://muapi.ai/playground/seedance-2-vip-text-to-video-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-text-to-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-text-to-video-fast?tab=2) - **veo3.1-extend-video** — `POST https://api.muapi.ai/api/v1/veo3.1-extend-video` — Veo 3.1’s Extend Video mode lets you continue or expand an existing video clip seamlessly. Starting from a short generated video, you can prompt the model to e… - [Playground](https://muapi.ai/playground/veo3.1-extend-video) · [llms.txt](https://muapi.ai/playground/veo3.1-extend-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-extend-video?tab=2) - **ltx-2-pro-text-to-video** — `POST https://api.muapi.ai/api/v1/ltx-2-pro-text-to-video` — LTX-2 Pro is the high-fidelity video-generation engine by Lightricks designed for professional workflows, supporting both text-to-video and image-to-video inpu… - [Playground](https://muapi.ai/playground/ltx-2-pro-text-to-video) · [llms.txt](https://muapi.ai/playground/ltx-2-pro-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2-pro-text-to-video?tab=2) - **hunyuan-text-to-video** — `POST https://api.muapi.ai/api/v1/hunyuan-text-to-video` — Hunyuan T2V generates detailed and dynamic videos from text prompts with a focus on realism and coherent motion. It handles multi-object scenes, human actions,… - [Playground](https://muapi.ai/playground/hunyuan-text-to-video) · [llms.txt](https://muapi.ai/playground/hunyuan-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/hunyuan-text-to-video?tab=2) - **ltx-2-19b-text-to-video** — `POST https://api.muapi.ai/api/v1/ltx-2-19b-text-to-video` — LTX-2-19B Text-to-Video generates coherent cinematic videos directly from text, with an emphasis on temporal stability, natural motion, and conceptual clarity.… - [Playground](https://muapi.ai/playground/ltx-2-19b-text-to-video) · [llms.txt](https://muapi.ai/playground/ltx-2-19b-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2-19b-text-to-video?tab=2) - **kling-v3.0-omni-standard-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-omni-standard-text-to-video` — Kling v3 Omni at 720P. Multi-image reference video generation — supply up to 4 images and reference them in your prompt with <<>>. Apimart-backed. - [Playground](https://muapi.ai/playground/kling-v3.0-omni-standard-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-omni-standard-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-omni-standard-text-to-video?tab=2) - **vidu-q3-turbo-text-to-video** — `POST https://api.muapi.ai/api/v1/vidu-q3-turbo-text-to-video` — Vidu Q3 Turbo Text-to-Video is the fast, affordable tier of Vidu Q3 — same prompt understanding and motion quality, optimised for rapid iteration. Use it for s… - [Playground](https://muapi.ai/playground/vidu-q3-turbo-text-to-video) · [llms.txt](https://muapi.ai/playground/vidu-q3-turbo-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q3-turbo-text-to-video?tab=2) - **minimax-hailuo-2.3-pro-t2v** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-2.3-pro-t2v` — Hailuo 2.3 Pro T2V turns your imagination into motion-picture realism. It interprets natural language prompts and generates visually stunning cinematic sequenc… - [Playground](https://muapi.ai/playground/minimax-hailuo-2.3-pro-t2v) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-2.3-pro-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-2.3-pro-t2v?tab=2) - **minimax-hailuo-02-standard-t2v** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-02-standard-t2v` — Fast and lightweight text-to-video generation. Ideal for quick drafts, previews, or playful content where speed matters more than cinematic quality. - [Playground](https://muapi.ai/playground/minimax-hailuo-02-standard-t2v) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-02-standard-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-02-standard-t2v?tab=2) - **seedance-2-vip-text-to-video-4k** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-text-to-video-4k` — SD 2 Text-to-Video VIP 4K by ByteDance. Generates ultra-high-resolution 4K video from a text prompt with priority routing, native audio-visual sync, and 4–15 s… - [Playground](https://muapi.ai/playground/seedance-2-vip-text-to-video-4k) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-text-to-video-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-text-to-video-4k?tab=2) - **pixverse-v6-t2v** — `POST https://api.muapi.ai/api/v1/pixverse-v6-t2v` — Generate high-quality videos from text prompts using PixVerse V6. Supports resolutions up to 1080p, durations up to 15 seconds, and optional AI-generated audio. - [Playground](https://muapi.ai/playground/pixverse-v6-t2v) · [llms.txt](https://muapi.ai/playground/pixverse-v6-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v6-t2v?tab=2) - **happy-horse-1.1-text-to-video-720p** — `POST https://api.muapi.ai/api/v1/happy-horse-1.1-text-to-video-720p` — Happy Horse 1.1 Text to Video (720p) — generate expressive 720p video clips from text prompts with vivid character motion. - [Playground](https://muapi.ai/playground/happy-horse-1.1-text-to-video-720p) · [llms.txt](https://muapi.ai/playground/happy-horse-1.1-text-to-video-720p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1.1-text-to-video-720p?tab=2) - **minimax-hailuo-2.3-standard-t2v** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-2.3-standard-t2v` — Hailuo 2.3 Standard T2V transforms pure imagination into moving cinematic visuals. Simply describe a scene, and this model generates a coherent, high-quality v… - [Playground](https://muapi.ai/playground/minimax-hailuo-2.3-standard-t2v) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-2.3-standard-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-2.3-standard-t2v?tab=2) - **openai-sora-2-pro-storyboard** — `POST https://api.muapi.ai/api/v1/openai-sora-2-pro-storyboard` — Sora 2 Pro enables creators to structure video narratives by chaining multiple scenes through storyboard “cards.” Each card defines a segment of the video—sett… - [Playground](https://muapi.ai/playground/openai-sora-2-pro-storyboard) · [llms.txt](https://muapi.ai/playground/openai-sora-2-pro-storyboard/llms.txt) · [API Reference](https://muapi.ai/playground/openai-sora-2-pro-storyboard?tab=2) - **pixverse-v5.5-t2v** — `POST https://api.muapi.ai/api/v1/pixverse-v5.5-t2v` — PixVerse v5.5 T2V generates cinematic short videos directly from text. It excels at stylized fantasy, anime, surreal worlds, atmospheric environments, and flui… - [Playground](https://muapi.ai/playground/pixverse-v5.5-t2v) · [llms.txt](https://muapi.ai/playground/pixverse-v5.5-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v5.5-t2v?tab=2) - **ltx-2.3-text-to-video** — `POST https://api.muapi.ai/api/v1/ltx-2.3-text-to-video` — LTX-2.3 Text-to-Video generates cinematic video clips directly from text prompts. Built on an upgraded 2.3B architecture, it delivers sharper temporal consiste… - [Playground](https://muapi.ai/playground/ltx-2.3-text-to-video) · [llms.txt](https://muapi.ai/playground/ltx-2.3-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2.3-text-to-video?tab=2) - **ovi-text-to-video** — `POST https://api.muapi.ai/api/v1/ovi-text-to-video` — Ovi is a unified model that generates synchronized video and audio from textual input. You write a scene description, including dialogue and ambient sounds, an… - [Playground](https://muapi.ai/playground/ovi-text-to-video) · [llms.txt](https://muapi.ai/playground/ovi-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ovi-text-to-video?tab=2) - **pixverse-v4.5-t2v** — `POST https://api.muapi.ai/api/v1/pixverse-v4.5-t2v` — PixVerse v4.5 transforms descriptive text into vivid, high-resolution video clips. It understands complex scenes, human motion, and cinematic camera angles — g… - [Playground](https://muapi.ai/playground/pixverse-v4.5-t2v) · [llms.txt](https://muapi.ai/playground/pixverse-v4.5-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v4.5-t2v?tab=2) - **happy-horse-1-text-to-video-1080p** — `POST https://api.muapi.ai/api/v1/happy-horse-1-text-to-video-1080p` — Happy Horse 1.0 Text to Video — generate expressive, stylized video clips from text prompts with vivid character motion and dynamic scene storytelling. - [Playground](https://muapi.ai/playground/happy-horse-1-text-to-video-1080p) · [llms.txt](https://muapi.ai/playground/happy-horse-1-text-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1-text-to-video-1080p?tab=2) - **kling-v3.0-4k-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-4k-text-to-video` — Kling 3.0 4K Text-to-Video generates ultra-high-resolution 3840×2160 cinematic video directly from text prompts with smooth, realistic motion and strong tempor… - [Playground](https://muapi.ai/playground/kling-v3.0-4k-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-4k-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-4k-text-to-video?tab=2) - **vidu-q2-turbo-text-to-video** — `POST https://api.muapi.ai/api/v1/vidu-q2-turbo-text-to-video` — Vidu Q2 Turbo Text-to-Video is the fast, affordable Q2 tier for prompt-only generation. Use it for storyboards, social cuts, and high-volume work where speed a… - [Playground](https://muapi.ai/playground/vidu-q2-turbo-text-to-video) · [llms.txt](https://muapi.ai/playground/vidu-q2-turbo-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-turbo-text-to-video?tab=2) - **minimax-hailuo-02-pro-t2v** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-02-pro-t2v` — High-fidelity text-to-video with cinematic rendering. Best for storytelling, cinematic clips, or realistic visuals with depth, atmosphere, and detail. - [Playground](https://muapi.ai/playground/minimax-hailuo-02-pro-t2v) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-02-pro-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-02-pro-t2v?tab=2) - **pixverse-v5-t2v** — `POST https://api.muapi.ai/api/v1/pixverse-v5-t2v` — PixVerse V5 delivers a major leap forward in AI-powered video creation — now featuring smoother motion, ultra-high resolution, and expanded visual effects. - [Playground](https://muapi.ai/playground/pixverse-v5-t2v) · [llms.txt](https://muapi.ai/playground/pixverse-v5-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v5-t2v?tab=2) - **seedance-2.5-intl-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-text-to-video` — Seedance 2.5 Text-to-Video is the early-access preview build of the Seedance 2.5 family, generating cinematic video directly from a detailed text prompt. It su… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-text-to-video?tab=2) - **seedance-2.5-text-to-video-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-text-to-video-1080p` — Seedance 2.5 Text-to-Video is the early-access preview build of the Seedance 2.5 family, generating cinematic video directly from a detailed text prompt. This… - [Playground](https://muapi.ai/playground/seedance-2.5-text-to-video-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-text-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-text-to-video-1080p?tab=2) - **happy-horse-1-text-to-video-720p** — `POST https://api.muapi.ai/api/v1/happy-horse-1-text-to-video-720p` — Happy Horse 1.0 Text to Video (720p) — generate expressive, stylized video clips from text prompts at 720p output resolution. - [Playground](https://muapi.ai/playground/happy-horse-1-text-to-video-720p) · [llms.txt](https://muapi.ai/playground/happy-horse-1-text-to-video-720p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1-text-to-video-720p?tab=2) - **openai-sora-2-pro-text-to-video** — `POST https://api.muapi.ai/api/v1/openai-sora-2-pro-text-to-video` — Sora 2 Pro T2V is the high-fidelity version of OpenAI’s video generation model. It converts your text prompts into cinematic, richly detailed video clips with… - [Playground](https://muapi.ai/playground/openai-sora-2-pro-text-to-video) · [llms.txt](https://muapi.ai/playground/openai-sora-2-pro-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/openai-sora-2-pro-text-to-video?tab=2) - **seedance-2.5-spicy-text-to-video-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-text-to-video-1080p` — Seedance 2.5 Text-to-Video is the early-access preview build of the Seedance 2.5 family, generating cinematic video directly from a detailed text prompt. This… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-1080p?tab=2) - **vidu-q3-pro-text-to-video** — `POST https://api.muapi.ai/api/v1/vidu-q3-pro-text-to-video` — Vidu Q3 Pro Text-to-Video generates cinematic, prompt-faithful clips with strong temporal consistency, accurate motion, and rich detail across resolutions up t… - [Playground](https://muapi.ai/playground/vidu-q3-pro-text-to-video) · [llms.txt](https://muapi.ai/playground/vidu-q3-pro-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q3-pro-text-to-video?tab=2) - **kling-v3.0-omni-4k-text-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-omni-4k-text-to-video` — Kling v3 Omni at 4K. Multi-image reference video generation — supply up to 4 images and reference them in your prompt with <<>>. Apimart-backed. - [Playground](https://muapi.ai/playground/kling-v3.0-omni-4k-text-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-omni-4k-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-omni-4k-text-to-video?tab=2) - **vidu-q2-pro-text-to-video** — `POST https://api.muapi.ai/api/v1/vidu-q2-pro-text-to-video` — Vidu Q2 Pro Text-to-Video generates cinematic, prompt-faithful clips from text alone with strong temporal consistency and rich detail at up to 1080p. Pick this… - [Playground](https://muapi.ai/playground/vidu-q2-pro-text-to-video) · [llms.txt](https://muapi.ai/playground/vidu-q2-pro-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-pro-text-to-video?tab=2) - **happy-horse-1.1-text-to-video-1080p** — `POST https://api.muapi.ai/api/v1/happy-horse-1.1-text-to-video-1080p` — Happy Horse 1.1 Text to Video (1080p) — generate expressive 1080p video clips from text prompts with vivid character motion and dynamic scene storytelling. - [Playground](https://muapi.ai/playground/happy-horse-1.1-text-to-video-1080p) · [llms.txt](https://muapi.ai/playground/happy-horse-1.1-text-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1.1-text-to-video-1080p?tab=2) - **seedance-2-vip-extend-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-extend-1080p` — SD 2.0 VIP Extend Video 1080p continues an existing SD 2.0 generated video seamlessly at 1080p resolution. Provide the original request ID and an optional prom… - [Playground](https://muapi.ai/playground/seedance-2-vip-extend-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-extend-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-extend-1080p?tab=2) - **veo3.1-4k-video** — `POST https://api.muapi.ai/api/v1/veo3.1-4k-video` — Get the ultra-high-definition 4K version of a Veo3.1 video generation task. This model is optimized for producing crisp, detailed videos suitable for professio… - [Playground](https://muapi.ai/playground/veo3.1-4k-video) · [llms.txt](https://muapi.ai/playground/veo3.1-4k-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-4k-video?tab=2) - **grok-imagine-extend** — `POST https://api.muapi.ai/api/v1/grok-imagine-extend` — Grok Imagine Extend lets you continue and expand existing Grok Imagine video generations seamlessly. Starting from a previously generated video, you can extend… - [Playground](https://muapi.ai/playground/grok-imagine-extend) · [llms.txt](https://muapi.ai/playground/grok-imagine-extend/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-extend?tab=2) - **seedance-2.5-intl-text-to-video-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-text-to-video-4k` — Seedance 2.5 Text-to-Video is the early-access preview build of the Seedance 2.5 family, generating cinematic video directly from a detailed text prompt. This… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-4k?tab=2) - **seedance-2.5-spicy-text-to-video-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-text-to-video-4k` — Seedance 2.5 Text-to-Video is the early-access preview build of the Seedance 2.5 family, generating cinematic video directly from a detailed text prompt. This… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-text-to-video-4k?tab=2) - **flux-3-text-to-video** — `POST https://api.muapi.ai/api/v1/flux-3-text-to-video` — FLUX 3 Text-to-Video generates cinematic video clips with optional native synchronized audio from a single unified model — the same architecture Black Forest L… - [Playground](https://muapi.ai/playground/flux-3-text-to-video) · [llms.txt](https://muapi.ai/playground/flux-3-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/flux-3-text-to-video?tab=2) - **seedance-2.1-text-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2.1-text-to-video` — Seedance 2.1 Text-to-Video generates high-quality cinematic videos directly from text prompts. The model excels at complex scene composition, smooth temporal f… - [Playground](https://muapi.ai/playground/seedance-2.1-text-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2.1-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.1-text-to-video?tab=2) - **seedance-2.5-intl-text-to-video-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-text-to-video-1080p` — Seedance 2.5 Text-to-Video is the early-access preview build of the Seedance 2.5 family, generating cinematic video directly from a detailed text prompt. This… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-text-to-video-1080p?tab=2) - **seedance-2.5-text-to-video-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-text-to-video-4k` — Seedance 2.5 Text-to-Video is the early-access preview build of the Seedance 2.5 family, generating cinematic video directly from a detailed text prompt. This… - [Playground](https://muapi.ai/playground/seedance-2.5-text-to-video-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-text-to-video-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-text-to-video-4k?tab=2) - **veo-4-text-to-video** — `POST https://api.muapi.ai/api/v1/veo-4-text-to-video` — Veo 4 Text to Video — Google DeepMind's fourth-generation model delivering photorealistic, high-fidelity 1080p videos with exceptional prompt adherence and cin… - [Playground](https://muapi.ai/playground/veo-4-text-to-video) · [llms.txt](https://muapi.ai/playground/veo-4-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo-4-text-to-video?tab=2) - **vidu-v2.0-t2v** — `POST https://api.muapi.ai/api/v1/vidu-v2.0-t2v` — Vidu's 2.0 model offers enhanced visual quality and comprehensive workflow support across multiple resolution options for versatile content creation. - [Playground](https://muapi.ai/playground/vidu-v2.0-t2v) · [llms.txt](https://muapi.ai/playground/vidu-v2.0-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-v2.0-t2v?tab=2) - **wan3.0-spicy-text-to-video** — `POST https://api.muapi.ai/api/v1/wan3.0-spicy-text-to-video` — Wan 3.0 Spicy Text to Video is an upcoming AI video model. Final Spicy-mode controls, output specifications, and pricing will be published at launch. - [Playground](https://muapi.ai/playground/wan3.0-spicy-text-to-video) · [llms.txt](https://muapi.ai/playground/wan3.0-spicy-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan3.0-spicy-text-to-video?tab=2) - **wan3.0-text-to-video** — `POST https://api.muapi.ai/api/v1/wan3.0-text-to-video` — Wan 3.0 Text to Video is an upcoming AI video model. Confirmed API controls, output specifications, and pricing will be published at launch. - [Playground](https://muapi.ai/playground/wan3.0-text-to-video) · [llms.txt](https://muapi.ai/playground/wan3.0-text-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan3.0-text-to-video?tab=2) ## Image-to-Video Models - **seedance-2-i2v** — `POST https://api.muapi.ai/api/v1/seedance-2-i2v` — SD 2.0 is the latest multimodal video generation model by ByteDance, offering advanced camera control, native audio-video sync, and high-resolution output. - [Playground](https://muapi.ai/playground/seedance-2-i2v) · [llms.txt](https://muapi.ai/playground/seedance-2-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-i2v?tab=2) - **grok-imagine-image-to-video** — `POST https://api.muapi.ai/api/v1/grok-imagine-image-to-video` — Grok Imagine is xAI’s multimodal image-to-video model, capable of animating still images into cinematic videos from 6 to 30 seconds with synchronized ambient a… - [Playground](https://muapi.ai/playground/grok-imagine-image-to-video) · [llms.txt](https://muapi.ai/playground/grok-imagine-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-image-to-video?tab=2) - **seedance-2.5-omni-reference** — `POST https://api.muapi.ai/api/v1/seedance-2.5-omni-reference` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-omni-reference) · [llms.txt](https://muapi.ai/playground/seedance-2.5-omni-reference/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-omni-reference?tab=2) - **kling-v3.0-standard-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-standard-image-to-video` — Kling 3.0 Standard Image-to-Video animates a single input image into a short, realistic video with smooth, stable motion. It prioritizes temporal consistency,… - [Playground](https://muapi.ai/playground/kling-v3.0-standard-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-standard-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-standard-image-to-video?tab=2) - **seedance-2-omni-reference** — `POST https://api.muapi.ai/api/v1/seedance-2-omni-reference` — SD 2.0 Omni Reference — generate videos with visual consistency using reference images, videos, and audio. Maintain character identity, style, and scene contin… - [Playground](https://muapi.ai/playground/seedance-2-omni-reference) · [llms.txt](https://muapi.ai/playground/seedance-2-omni-reference/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-omni-reference?tab=2) - **seedance-2-omni-reference-no-video-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-omni-reference-no-video-fast` — SD 2 Omni Reference (Fast) by ByteDance. Quickly generate videos using up to 9 image references and up to 3 audio references at reduced cost. Reference images… - [Playground](https://muapi.ai/playground/seedance-2-omni-reference-no-video-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-omni-reference-no-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-omni-reference-no-video-fast?tab=2) - **seedance-pro-i2v-fast** — `POST https://api.muapi.ai/api/v1/seedance-pro-i2v-fast` — Seedance Pro Fast is the high-speed image-to-video generation variant from ByteDance’s Seedance series. With this model you upload a reference image and—using… - [Playground](https://muapi.ai/playground/seedance-pro-i2v-fast) · [llms.txt](https://muapi.ai/playground/seedance-pro-i2v-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-pro-i2v-fast?tab=2) - **kling-v3.0-pro-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-pro-image-to-video` — Kling 3.0 Pro Image-to-Video animates a single input image into a high-quality, realistic video with smooth camera motion, natural physics, and strong temporal… - [Playground](https://muapi.ai/playground/kling-v3.0-pro-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-pro-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-pro-image-to-video?tab=2) - **seedance-2-vip-omni-reference** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-omni-reference` — SD 2 Omni Reference VIP (Pro) by ByteDance. Generate videos using up to 9 image references, up to 3 video clips, and up to 3 audio references with priority rou… - [Playground](https://muapi.ai/playground/seedance-2-vip-omni-reference) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-omni-reference/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-omni-reference?tab=2) - **seedance-2-image-to-video-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-image-to-video-fast` — SD 2 Image-to-Video (Fast) by ByteDance. Quickly animates a start-frame image into video with 4–15 second duration at reduced cost. - [Playground](https://muapi.ai/playground/seedance-2-image-to-video-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-image-to-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-image-to-video-fast?tab=2) - **seedance-2.5-omni-reference-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-omni-reference-480p` — Seedance 2.5 Omni Reference 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, blending multiple reference images, video cli… - [Playground](https://muapi.ai/playground/seedance-2.5-omni-reference-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-omni-reference-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-omni-reference-480p?tab=2) - **seedance-2.5-spicy-omni-reference-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-omni-reference-480p` — Seedance 2.5 Omni Reference 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, blending multiple reference images, video cli… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-480p?tab=2) - **seedance-lite-i2v** — `POST https://api.muapi.ai/api/v1/seedance-lite-i2v` — Seedance Lite I2V version animates static images into short videos quickly, focusing on basic motion effects and efficient processing—best suited for fast demo… - [Playground](https://muapi.ai/playground/seedance-lite-i2v) · [llms.txt](https://muapi.ai/playground/seedance-lite-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-lite-i2v?tab=2) - **wan2.7-image-to-video** — `POST https://api.muapi.ai/api/v1/wan2.7-image-to-video` — Alibaba WAN 2.7 converts images into videos with optional audio. - [Playground](https://muapi.ai/playground/wan2.7-image-to-video) · [llms.txt](https://muapi.ai/playground/wan2.7-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-image-to-video?tab=2) - **seedance-2-vip-omni-reference-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-omni-reference-1080p` — SD 2 Omni Reference VIP 1080p by ByteDance. Generate full HD videos using up to 9 image references, up to 3 video clips, and up to 3 audio references with prio… - [Playground](https://muapi.ai/playground/seedance-2-vip-omni-reference-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-omni-reference-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-omni-reference-1080p?tab=2) - **seedance-2.5-spicy-omni-reference** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-omni-reference` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference?tab=2) - **seedance-2.5-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2.5-image-to-video` — Seedance 2.5 Image-to-Video is the early-access preview build of the Seedance 2.5 family, animating a single image into video. Supports clips up to 30 seconds… - [Playground](https://muapi.ai/playground/seedance-2.5-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2.5-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-image-to-video?tab=2) - **veo3.1-image-to-video** — `POST https://api.muapi.ai/api/v1/veo3.1-image-to-video` — Veo 3.1 is Google's advanced AI video generation model that allows users to create high-quality, 8-second videos from static images. This feature is particular… - [Playground](https://muapi.ai/playground/veo3.1-image-to-video) · [llms.txt](https://muapi.ai/playground/veo3.1-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-image-to-video?tab=2) - **kling-v2.1-standard-i2v** — `POST https://api.muapi.ai/api/v1/kling-v2.1-standard-i2v` — Kling 2.1 Standard (developed by Kuaishou) brings static images to life by generating smooth, realistic video clips from a single frame. It captures subtle mot… - [Playground](https://muapi.ai/playground/kling-v2.1-standard-i2v) · [llms.txt](https://muapi.ai/playground/kling-v2.1-standard-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.1-standard-i2v?tab=2) - **seedance-2-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-image-to-video` — SD 2 Image-to-Video (Pro) by ByteDance. Animates a start-frame image into a high-quality video with native audio, 4–15 second duration, and 2K resolution. - [Playground](https://muapi.ai/playground/seedance-2-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-image-to-video?tab=2) - **wan2.5-image-to-video** — `POST https://api.muapi.ai/api/v1/wan2.5-image-to-video` — WAN 2.5 Image-to-Video takes your image as the starting frame and turns it into a dynamic video, preserving realism, motion, and camera effects. Upload a stati… - [Playground](https://muapi.ai/playground/wan2.5-image-to-video) · [llms.txt](https://muapi.ai/playground/wan2.5-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.5-image-to-video?tab=2) - **gemini-omni-image-to-video** — `POST https://api.muapi.ai/api/v1/gemini-omni-image-to-video` — Gemini Omni Image to Video — animate one or more reference images with a text prompt. Unified reasoning across modalities preserves subject identity and genera… - [Playground](https://muapi.ai/playground/gemini-omni-image-to-video) · [llms.txt](https://muapi.ai/playground/gemini-omni-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-omni-image-to-video?tab=2) - **seedance-pro-i2v** — `POST https://api.muapi.ai/api/v1/seedance-pro-i2v` — Seedance Pro I2V advanced model animates still images into stunning short videos, preserving intricate visual details and applying smooth motion dynamics, idea… - [Playground](https://muapi.ai/playground/seedance-pro-i2v) · [llms.txt](https://muapi.ai/playground/seedance-pro-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-pro-i2v?tab=2) - **kling-v3.0-omni-pro-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-omni-pro-image-to-video` — Kling v3 Omni at 1080P. Multi-image reference video generation — supply up to 4 images and reference them in your prompt with <<>>. Apimart-backed. - [Playground](https://muapi.ai/playground/kling-v3.0-omni-pro-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-omni-pro-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-omni-pro-image-to-video?tab=2) - **seedance-2-mini-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-mini-image-to-video` — Seedance 2.0 Mini Image-to-Video is the fastest and most cost-efficient tier in the Seedance 2.0 family, converting still images into smooth cinematic video cl… - [Playground](https://muapi.ai/playground/seedance-2-mini-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-mini-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-mini-image-to-video?tab=2) - **seedance-2-vip-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-image-to-video` — SD 2 Image-to-Video VIP (Pro) by ByteDance. Animates a start-frame image into a high-quality video with priority routing, native audio, 4–15 second duration, a… - [Playground](https://muapi.ai/playground/seedance-2-vip-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-image-to-video?tab=2) - **kling-v2.5-turbo-pro-i2v** — `POST https://api.muapi.ai/api/v1/kling-v2.5-turbo-pro-i2v` — Kling 2.5 Turbo Pro: Top-tier image-to-video generation with unparalleled motion fluidity, cinematic visuals, and exceptional prompt precision. - [Playground](https://muapi.ai/playground/kling-v2.5-turbo-pro-i2v) · [llms.txt](https://muapi.ai/playground/kling-v2.5-turbo-pro-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.5-turbo-pro-i2v?tab=2) - **wan2.2-spicy-image-to-video** — `POST https://api.muapi.ai/api/v1/wan2.2-spicy-image-to-video` — Wan2.2-spicy Image-to-Video transforms a single creative image into a short dynamic video with bold motion, stylized effects, high-contrast lighting, and energ… - [Playground](https://muapi.ai/playground/wan2.2-spicy-image-to-video) · [llms.txt](https://muapi.ai/playground/wan2.2-spicy-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.2-spicy-image-to-video?tab=2) - **veo3.1-fast-image-to-video** — `POST https://api.muapi.ai/api/v1/veo3.1-fast-image-to-video` — Veo 3.1 Fast is an optimized version of Google’s Veo 3.1 AI that transforms static images into dynamic 8-second videos at higher speed. It preserves visual fid… - [Playground](https://muapi.ai/playground/veo3.1-fast-image-to-video) · [llms.txt](https://muapi.ai/playground/veo3.1-fast-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-fast-image-to-video?tab=2) - **seedance-2.5-image-to-video-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-image-to-video-480p` — Seedance 2.5 Image-to-Video 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, animating a single image into video. Faster a… - [Playground](https://muapi.ai/playground/seedance-2.5-image-to-video-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-image-to-video-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-image-to-video-480p?tab=2) - **ai-video-effects** — `POST https://api.muapi.ai/api/v1/ai-video-effects` — AI Video Effects applies advanced visual transformations, color grading, and cinematic filters to create stunning videos from images. - [Playground](https://muapi.ai/playground/ai-video-effects) · [llms.txt](https://muapi.ai/playground/ai-video-effects/llms.txt) · [API Reference](https://muapi.ai/playground/ai-video-effects?tab=2) - **kling-v2.5-turbo-std-i2v** — `POST https://api.muapi.ai/api/v1/kling-v2.5-turbo-std-i2v` — Kling 2.5 Turbo Std: Top-tier image-to-video generation with unparalleled motion fluidity, cinematic visuals, and exceptional prompt precision. - [Playground](https://muapi.ai/playground/kling-v2.5-turbo-std-i2v) · [llms.txt](https://muapi.ai/playground/kling-v2.5-turbo-std-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.5-turbo-std-i2v?tab=2) - **vidu-q2-turbo-start-end-video** — `POST https://api.muapi.ai/api/v1/vidu-q2-turbo-start-end-video` — Vidu Q2 Turbo Start–End Video creates highly detailed cinematic sequences by interpolating between two visual states — your start frame and end frame. Built fo… - [Playground](https://muapi.ai/playground/vidu-q2-turbo-start-end-video) · [llms.txt](https://muapi.ai/playground/vidu-q2-turbo-start-end-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-turbo-start-end-video?tab=2) - **seedance-2-vip-omni-reference-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-omni-reference-fast` — SD 2 Omni Reference VIP Fast by ByteDance. Faster video generation using up to 9 image references, up to 3 video clips, and up to 3 audio references with prior… - [Playground](https://muapi.ai/playground/seedance-2-vip-omni-reference-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-omni-reference-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-omni-reference-fast?tab=2) - **seedance-v1.5-pro-i2v** — `POST https://api.muapi.ai/api/v1/seedance-v1.5-pro-i2v` — Seedance v1.5 Pro Image-to-Video converts a single still image into a smooth cinematic video clip. It preserves the original image’s composition, subject ident… - [Playground](https://muapi.ai/playground/seedance-v1.5-pro-i2v) · [llms.txt](https://muapi.ai/playground/seedance-v1.5-pro-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-v1.5-pro-i2v?tab=2) - **seedance-2-mini-spicy-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-mini-spicy-image-to-video` — Seedance 2 Mini Spicy Image-to-Video is the fastest, lowest-cost Spicy-tier image animation, with reduced content-safety filtering on top of Seedance 2 Mini's… - [Playground](https://muapi.ai/playground/seedance-2-mini-spicy-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-mini-spicy-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-mini-spicy-image-to-video?tab=2) - **runway-image-to-video** — `POST https://api.muapi.ai/api/v1/runway-image-to-video` — Animate any image by turning it into a video with motion effects or scene continuity. RunwayML’s I2V model transforms static visuals into short clips by extrap… - [Playground](https://muapi.ai/playground/runway-image-to-video) · [llms.txt](https://muapi.ai/playground/runway-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/runway-image-to-video?tab=2) - **motion-controls** — `POST https://api.muapi.ai/api/v1/motion-controls` — Motion Controls adds dynamic camera movements, speed ramps, and zoom effects to bring your images to life as smooth, engaging videos. - [Playground](https://muapi.ai/playground/motion-controls) · [llms.txt](https://muapi.ai/playground/motion-controls/llms.txt) · [API Reference](https://muapi.ai/playground/motion-controls?tab=2) - **seedance-2-spicy-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2-spicy-image-to-video` — Seedance 2 Spicy Image-to-Video by ByteDance. Animates a start frame into cinematic video with VIP-tier priority routing and up to 2K resolution, with reduced… - [Playground](https://muapi.ai/playground/seedance-2-spicy-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2-spicy-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-spicy-image-to-video?tab=2) - **seedance-2-vip-image-to-video-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-image-to-video-fast` — SD 2 Image-to-Video VIP Fast by ByteDance. Faster animation of a start-frame image with priority routing, 4–15 second duration, and 2K resolution. - [Playground](https://muapi.ai/playground/seedance-2-vip-image-to-video-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-image-to-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-image-to-video-fast?tab=2) - **kling-v2.1-pro-i2v** — `POST https://api.muapi.ai/api/v1/kling-v2.1-pro-i2v` — Kling 2.1 Pro is the high-end version of Kuaishou’s video generation model, offering enhanced realism, longer motion sequences, and cinematic quality. In I2V m… - [Playground](https://muapi.ai/playground/kling-v2.1-pro-i2v) · [llms.txt](https://muapi.ai/playground/kling-v2.1-pro-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.1-pro-i2v?tab=2) - **kling-v3-turbo-standard-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3-turbo-standard-image-to-video` — Generate fast, high-quality videos from a single image using Kling v3 Turbo Standard (720p). Supports durations from 3 to 15 seconds. - [Playground](https://muapi.ai/playground/kling-v3-turbo-standard-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3-turbo-standard-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3-turbo-standard-image-to-video?tab=2) - **veo3.1-lite-image-to-video** — `POST https://api.muapi.ai/api/v1/veo3.1-lite-image-to-video` — Veo 3.1 Lite is a lightweight variant of Google's Veo 3.1 model designed for faster, more accessible video generation from images. - [Playground](https://muapi.ai/playground/veo3.1-lite-image-to-video) · [llms.txt](https://muapi.ai/playground/veo3.1-lite-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-lite-image-to-video?tab=2) - **seedance-2-first-last-frame** — `POST https://api.muapi.ai/api/v1/seedance-2-first-last-frame` — SD 2 First & Last Frame (Pro) by ByteDance. Generate video that transitions between two reference images. Provide 1 image for start-frame-only, or 2 images for… - [Playground](https://muapi.ai/playground/seedance-2-first-last-frame) · [llms.txt](https://muapi.ai/playground/seedance-2-first-last-frame/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-first-last-frame?tab=2) - **seedance-v1.5-pro-i2v-fast** — `POST https://api.muapi.ai/api/v1/seedance-v1.5-pro-i2v-fast` — Seedance v1.5 Pro Image-to-Video Fast converts a single still image into a short cinematic video with quick generation speed. It preserves the original image’s… - [Playground](https://muapi.ai/playground/seedance-v1.5-pro-i2v-fast) · [llms.txt](https://muapi.ai/playground/seedance-v1.5-pro-i2v-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-v1.5-pro-i2v-fast?tab=2) - **kling-v3-turbo-pro-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3-turbo-pro-image-to-video` — Generate fast, high-quality videos from a single image using Kling v3 Turbo Pro (1080p). Supports durations from 3 to 15 seconds. - [Playground](https://muapi.ai/playground/kling-v3-turbo-pro-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3-turbo-pro-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3-turbo-pro-image-to-video?tab=2) - **grok-imagine-video-1-5-preview** — `POST https://api.muapi.ai/api/v1/grok-imagine-video-1-5-preview` — Generate videos from images using the Grok Imagine Video 1.5 Preview model with support for multiple aspect ratios, resolutions, and durations up to 15 seconds. - [Playground](https://muapi.ai/playground/grok-imagine-video-1-5-preview) · [llms.txt](https://muapi.ai/playground/grok-imagine-video-1-5-preview/llms.txt) · [API Reference](https://muapi.ai/playground/grok-imagine-video-1-5-preview?tab=2) - **seedance-2-omni-reference-no-video** — `POST https://api.muapi.ai/api/v1/seedance-2-omni-reference-no-video` — SD 2 Omni Reference by ByteDance. Generate videos using up to 9 image references and up to 3 audio references. Reference images in your prompt with @image1, @i… - [Playground](https://muapi.ai/playground/seedance-2-omni-reference-no-video) · [llms.txt](https://muapi.ai/playground/seedance-2-omni-reference-no-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-omni-reference-no-video?tab=2) - **kling-v3.0-omni-standard-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-omni-standard-image-to-video` — Kling v3 Omni at 720P. Multi-image reference video generation — supply up to 4 images and reference them in your prompt with <<>>. Apimart-backed. - [Playground](https://muapi.ai/playground/kling-v3.0-omni-standard-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-omni-standard-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-omni-standard-image-to-video?tab=2) - **kling-v2.6-pro-i2v** — `POST https://api.muapi.ai/api/v1/kling-v2.6-pro-i2v` — Kling-v2.6-Pro Image-to-Video transforms a single creative image into a short cinematic video. It preserves the original style, lighting, and composition while… - [Playground](https://muapi.ai/playground/kling-v2.6-pro-i2v) · [llms.txt](https://muapi.ai/playground/kling-v2.6-pro-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.6-pro-i2v?tab=2) - **seedance-2-omni-reference-480p** — `POST https://api.muapi.ai/api/v1/seedance-2-omni-reference-480p` — SD 2.0 480p Omni Reference — generate videos with visual consistency using reference images, videos, and audio at 480p resolution. More cost-effective than the… - [Playground](https://muapi.ai/playground/seedance-2-omni-reference-480p) · [llms.txt](https://muapi.ai/playground/seedance-2-omni-reference-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-omni-reference-480p?tab=2) - **seedance-2.5-spicy-image-to-video-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-image-to-video-480p` — Seedance 2.5 Image-to-Video 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, animating a single image into video. Faster a… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-480p?tab=2) - **minimax-hailuo-02-standard-i2v** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-02-standard-i2v` — Transforms an image into video with light, natural motion. Great for social media, quick animations, and previews. - [Playground](https://muapi.ai/playground/minimax-hailuo-02-standard-i2v) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-02-standard-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-02-standard-i2v?tab=2) - **seedance-2.5-spicy-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-image-to-video` — Seedance 2.5 Spicy Image-to-Video is the relaxed-moderation variant of the Seedance 2.5 flagship model. It animates a single image into photorealistic 4K video… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video?tab=2) - **wan2.2-image-to-video** — `POST https://api.muapi.ai/api/v1/wan2.2-image-to-video` — Wan 2.2’s I2V mode brings static visuals to life with vivid, expressive animations. It interprets motion, emotion, and background dynamics from a single image… - [Playground](https://muapi.ai/playground/wan2.2-image-to-video) · [llms.txt](https://muapi.ai/playground/wan2.2-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.2-image-to-video?tab=2) - **seedance-2-first-last-frame-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-first-last-frame-fast` — SD 2 First & Last Frame (Fast) by ByteDance. Quickly generate video that transitions between reference images at reduced cost. Provide 1 or 2 images. - [Playground](https://muapi.ai/playground/seedance-2-first-last-frame-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-first-last-frame-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-first-last-frame-fast?tab=2) - **kling-v2.1-master-i2v** — `POST https://api.muapi.ai/api/v1/kling-v2.1-master-i2v` — Kling 2.1 Master’s I2V animates a still image into a coherent video sequence. It interprets motion, environment, and context to create realistic, visually stun… - [Playground](https://muapi.ai/playground/kling-v2.1-master-i2v) · [llms.txt](https://muapi.ai/playground/kling-v2.1-master-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.1-master-i2v?tab=2) - **ltx-2-19b-image-to-video** — `POST https://api.muapi.ai/api/v1/ltx-2-19b-image-to-video` — LTX-2-19B Image-to-Video animates a single image into a coherent cinematic clip with strong temporal stability. It preserves composition and lighting while add… - [Playground](https://muapi.ai/playground/ltx-2-19b-image-to-video) · [llms.txt](https://muapi.ai/playground/ltx-2-19b-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2-19b-image-to-video?tab=2) - **seedance-2-vip-image-to-video-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-image-to-video-1080p` — SD 2 Image-to-Video VIP 1080p by ByteDance. Animates a still image into a cinematic 1080p video with priority routing, 4–15 second duration. - [Playground](https://muapi.ai/playground/seedance-2-vip-image-to-video-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-image-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-image-to-video-1080p?tab=2) - **video-effects** — `POST https://api.muapi.ai/api/v1/video-effects` — AI Video Effects applies advanced visual transformations, color grading, and cinematic filters to create stunning videos from images. - [Playground](https://muapi.ai/playground/video-effects) · [llms.txt](https://muapi.ai/playground/video-effects/llms.txt) · [API Reference](https://muapi.ai/playground/video-effects?tab=2) - **veo3-fast-image-to-video** — `POST https://api.muapi.ai/api/v1/veo3-fast-image-to-video` — Quickly transform static images into short, motion-rich video clips with fast rendering and impressive quality — powered by Google's VEO3 on MuAPI. - [Playground](https://muapi.ai/playground/veo3-fast-image-to-video) · [llms.txt](https://muapi.ai/playground/veo3-fast-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3-fast-image-to-video?tab=2) - **seedance-2.5-first-last-frame** — `POST https://api.muapi.ai/api/v1/seedance-2.5-first-last-frame` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-first-last-frame) · [llms.txt](https://muapi.ai/playground/seedance-2.5-first-last-frame/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-first-last-frame?tab=2) - **seedance-2.5-omni-reference-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-omni-reference-1080p` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-omni-reference-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-omni-reference-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-omni-reference-1080p?tab=2) - **wan2.5-image-to-video-fast** — `POST https://api.muapi.ai/api/v1/wan2.5-image-to-video-fast` — Convert a single static image into a cinematic short video with realistic motion, dynamic camera movement, and environmental effects. The Fast mode generates h… - [Playground](https://muapi.ai/playground/wan2.5-image-to-video-fast) · [llms.txt](https://muapi.ai/playground/wan2.5-image-to-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.5-image-to-video-fast?tab=2) - **seedance-2-spicy-image-to-video-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-spicy-image-to-video-fast` — Seedance 2 Spicy Image-to-Video Fast by ByteDance. The quickest Spicy-tier image animation, with reduced content-safety filtering and the same fast queue as Se… - [Playground](https://muapi.ai/playground/seedance-2-spicy-image-to-video-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-spicy-image-to-video-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-spicy-image-to-video-fast?tab=2) - **veo3-image-to-video** — `POST https://api.muapi.ai/api/v1/veo3-image-to-video` — VEO3 I2V animates static images into expressive video sequences, adding lifelike movement while preserving the original composition. - [Playground](https://muapi.ai/playground/veo3-image-to-video) · [llms.txt](https://muapi.ai/playground/veo3-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3-image-to-video?tab=2) - **kling-o1-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-o1-image-to-video` — Kling O1’s Image-to-Video mode transforms one or more reference images into short cinematic video clips by adding natural motion, camera choreography, and scen… - [Playground](https://muapi.ai/playground/kling-o1-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-o1-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-image-to-video?tab=2) - **veo3.1-reference-to-video** — `POST https://api.muapi.ai/api/v1/veo3.1-reference-to-video` — Veo 3.1 R2V allows creators to generate dynamic videos using up to three reference images. The model maintains visual consistency of characters, objects, and s… - [Playground](https://muapi.ai/playground/veo3.1-reference-to-video) · [llms.txt](https://muapi.ai/playground/veo3.1-reference-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo3.1-reference-to-video?tab=2) - **seedance-2-i2v-480p** — `POST https://api.muapi.ai/api/v1/seedance-2-i2v-480p` — SD 2.0 480p image-to-video generation. Faster and more cost-effective than the 720p variant, ideal for previews and drafts. - [Playground](https://muapi.ai/playground/seedance-2-i2v-480p) · [llms.txt](https://muapi.ai/playground/seedance-2-i2v-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-i2v-480p?tab=2) - **minimax-h3-image-to-video** — `POST https://api.muapi.ai/api/v1/minimax-h3-image-to-video` — MiniMax H3 Image to Video animates a source image with a motion prompt through the Muapi API. - [Playground](https://muapi.ai/playground/minimax-h3-image-to-video) · [llms.txt](https://muapi.ai/playground/minimax-h3-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-h3-image-to-video?tab=2) - **seedance-2-vip-first-last-frame** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-first-last-frame` — SD 2 First & Last Frame VIP (Pro) by ByteDance. Generate video that transitions between two reference images with priority routing. Provide 1 image for start-f… - [Playground](https://muapi.ai/playground/seedance-2-vip-first-last-frame) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-first-last-frame/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-first-last-frame?tab=2) - **seedance-2-vip-omni-reference-4k** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-omni-reference-4k` — SD 2 Omni Reference VIP 4K by ByteDance. Generate 4K ultra-HD videos using up to 9 image references, up to 3 video clips, and up to 3 audio references with pri… - [Playground](https://muapi.ai/playground/seedance-2-vip-omni-reference-4k) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-omni-reference-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-omni-reference-4k?tab=2) - **wan2.6-image-to-video** — `POST https://api.muapi.ai/api/v1/wan2.6-image-to-video` — WAN 2.6 Image-to-Video converts a single still image into a smooth, cinematic video clip. It preserves the original image’s composition, lighting, and style wh… - [Playground](https://muapi.ai/playground/wan2.6-image-to-video) · [llms.txt](https://muapi.ai/playground/wan2.6-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.6-image-to-video?tab=2) - **kling-v3.0-4k-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-4k-image-to-video` — Kling 3.0 4K Image-to-Video animates a single input image into ultra-high-resolution 3840×2160 video with smooth camera motion, natural physics, and strong tem… - [Playground](https://muapi.ai/playground/kling-v3.0-4k-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-4k-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-4k-image-to-video?tab=2) - **kling-o1-standard-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-o1-standard-image-to-video` — Kling O1 Standard Image-to-Video converts a single still image into a short, natural-looking video clip. It preserves the original image’s composition and ligh… - [Playground](https://muapi.ai/playground/kling-o1-standard-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-o1-standard-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-standard-image-to-video?tab=2) - **seedance-2.5-first-last-frame-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-first-last-frame-480p` — Seedance 2.5 First & Last Frame 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, generating a smooth video transition betw… - [Playground](https://muapi.ai/playground/seedance-2.5-first-last-frame-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-first-last-frame-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-first-last-frame-480p?tab=2) - **vidu-q2-reference** — `POST https://api.muapi.ai/api/v1/vidu-q2-reference` — Vidu Q2 Reference Video generates breathtaking cinematic clips from text prompts guided by multiple reference images. Each image refines the model’s understand… - [Playground](https://muapi.ai/playground/vidu-q2-reference) · [llms.txt](https://muapi.ai/playground/vidu-q2-reference/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-reference?tab=2) - **minimax-h3-reference-to-video** — `POST https://api.muapi.ai/api/v1/minimax-h3-reference-to-video` — MiniMax H3 Reference to Video creates a 2K video from a prompt plus image, video, and optional audio references through the Muapi API. - [Playground](https://muapi.ai/playground/minimax-h3-reference-to-video) · [llms.txt](https://muapi.ai/playground/minimax-h3-reference-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-h3-reference-to-video?tab=2) - **seedance-2-vip-first-last-frame-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-first-last-frame-1080p` — SD 2 First & Last Frame VIP 1080p by ByteDance. Generate 1080p video that transitions between two reference images with priority routing. Provide 1 image for s… - [Playground](https://muapi.ai/playground/seedance-2-vip-first-last-frame-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-first-last-frame-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-first-last-frame-1080p?tab=2) - **vidu-q3-turbo-first-last-frames** — `POST https://api.muapi.ai/api/v1/vidu-q3-turbo-first-last-frames` — Vidu Q3 Turbo First-Last Frames interpolates a quick, cost-efficient transition between two key images — your start frame and end frame — guided by a text prom… - [Playground](https://muapi.ai/playground/vidu-q3-turbo-first-last-frames) · [llms.txt](https://muapi.ai/playground/vidu-q3-turbo-first-last-frames/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q3-turbo-first-last-frames?tab=2) - **kling-o1-reference-to-video** — `POST https://api.muapi.ai/api/v1/kling-o1-reference-to-video` — Kling O1’s Reference-to-Video mode generates a dynamic video using one or multiple reference images as the visual foundation. It preserves identity, style, com… - [Playground](https://muapi.ai/playground/kling-o1-reference-to-video) · [llms.txt](https://muapi.ai/playground/kling-o1-reference-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-reference-to-video?tab=2) - **vidu-q2-turbo-image-to-video** — `POST https://api.muapi.ai/api/v1/vidu-q2-turbo-image-to-video` — Vidu Q2 Turbo Image-to-Video animates a starting image into a fast, prompt-guided clip while preserving subject identity. Built for speed and cost efficiency. - [Playground](https://muapi.ai/playground/vidu-q2-turbo-image-to-video) · [llms.txt](https://muapi.ai/playground/vidu-q2-turbo-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-turbo-image-to-video?tab=2) - **vidu-q3-pro-first-last-frames** — `POST https://api.muapi.ai/api/v1/vidu-q3-pro-first-last-frames` — Vidu Q3 Pro First-Last Frames interpolates a smooth, cinematic transition between two key images — your start frame and end frame — guided by a text prompt. Pe… - [Playground](https://muapi.ai/playground/vidu-q3-pro-first-last-frames) · [llms.txt](https://muapi.ai/playground/vidu-q3-pro-first-last-frames/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q3-pro-first-last-frames?tab=2) - **seedance-2.5-intl-omni-reference-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-omni-reference-480p` — Seedance 2.5 Omni Reference 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, blending multiple reference images, video cli… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-480p?tab=2) - **wan2.1-image-to-video** — `POST https://api.muapi.ai/api/v1/wan2.1-image-to-video` — Animate static images into expressive video sequences with WAN 2.1. Upload any image and guide its transformation into a moving scene — great for bringing art,… - [Playground](https://muapi.ai/playground/wan2.1-image-to-video) · [llms.txt](https://muapi.ai/playground/wan2.1-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.1-image-to-video?tab=2) - **pixverse-v6-transition** — `POST https://api.muapi.ai/api/v1/pixverse-v6-transition` — Create a smooth transition between two images (start and end) or from a single starting image to a generated video. - [Playground](https://muapi.ai/playground/pixverse-v6-transition) · [llms.txt](https://muapi.ai/playground/pixverse-v6-transition/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v6-transition?tab=2) - **kling-v3.0-omni-4k-image-to-video** — `POST https://api.muapi.ai/api/v1/kling-v3.0-omni-4k-image-to-video` — Kling v3 Omni at 4K. Multi-image reference video generation — supply up to 4 images and reference them in your prompt with <<>>. Apimart-backed. - [Playground](https://muapi.ai/playground/kling-v3.0-omni-4k-image-to-video) · [llms.txt](https://muapi.ai/playground/kling-v3.0-omni-4k-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-omni-4k-image-to-video?tab=2) - **seedance-lite-reference-video** — `POST https://api.muapi.ai/api/v1/seedance-lite-reference-video` — Seedance Lite's Reference-to-Video feature allows you to supply up to 4 images as reference inputs. The model intelligently blends aspects from these images to… - [Playground](https://muapi.ai/playground/seedance-lite-reference-video) · [llms.txt](https://muapi.ai/playground/seedance-lite-reference-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-lite-reference-video?tab=2) - **vfx** — `POST https://api.muapi.ai/api/v1/vfx` — VFX delivers high-impact visual effects like explosions, particles, and cinematic overlays to transform static images into action-packed videos. - [Playground](https://muapi.ai/playground/vfx) · [llms.txt](https://muapi.ai/playground/vfx/llms.txt) · [API Reference](https://muapi.ai/playground/vfx?tab=2) - **seedance-2-vip-first-last-frame-fast** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-first-last-frame-fast` — SD 2 First & Last Frame VIP Fast by ByteDance. Faster generation of video transitions between two reference images with priority routing. - [Playground](https://muapi.ai/playground/seedance-2-vip-first-last-frame-fast) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-first-last-frame-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-first-last-frame-fast?tab=2) - **minimax-h3-open-image-to-video** — `POST https://api.muapi.ai/api/v1/minimax-h3-open-image-to-video` — MiniMax H3 Open Image to Video animates a first-frame image (with optional last-frame guidance) into coherent video with native audio, supporting 480p/768p res… - [Playground](https://muapi.ai/playground/minimax-h3-open-image-to-video) · [llms.txt](https://muapi.ai/playground/minimax-h3-open-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-h3-open-image-to-video?tab=2) - **minimax-h3-open-reference-to-video** — `POST https://api.muapi.ai/api/v1/minimax-h3-open-reference-to-video` — MiniMax H3 Open Reference to Video generates coherent videos from prompts and multimodal references, guided by up to 9 reference images, 3 reference videos, an… - [Playground](https://muapi.ai/playground/minimax-h3-open-reference-to-video) · [llms.txt](https://muapi.ai/playground/minimax-h3-open-reference-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-h3-open-reference-to-video?tab=2) - **seedance-2.5-intl-omni-reference** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-omni-reference` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-omni-reference) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-omni-reference/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-omni-reference?tab=2) - **ltx-2.3-image-to-video** — `POST https://api.muapi.ai/api/v1/ltx-2.3-image-to-video` — LTX-2.3 Image-to-Video animates a single image into a coherent cinematic clip. It preserves scene composition and lighting while adding smooth camera motion, p… - [Playground](https://muapi.ai/playground/ltx-2.3-image-to-video) · [llms.txt](https://muapi.ai/playground/ltx-2.3-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2.3-image-to-video?tab=2) - **runway-act-two-i2v** — `POST https://api.muapi.ai/api/v1/runway-act-two-i2v` — Upload a single character image and a driving video — the model transfers facial expressions and head movements from the video onto your image, bringing it to… - [Playground](https://muapi.ai/playground/runway-act-two-i2v) · [llms.txt](https://muapi.ai/playground/runway-act-two-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/runway-act-two-i2v?tab=2) - **seedance-2-vip-image-to-video-4k** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-image-to-video-4k` — SD 2 Image-to-Video VIP 4K by ByteDance. Animates a still image into a 4K ultra-HD video with priority routing and 4–15 second duration. - [Playground](https://muapi.ai/playground/seedance-2-vip-image-to-video-4k) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-image-to-video-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-image-to-video-4k?tab=2) - **seedance-2.5-intl-image-to-video-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-image-to-video-480p` — Seedance 2.5 Image-to-Video 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, animating a single image into video. Faster a… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-480p?tab=2) - **vidu-q2-pro-start-end-video** — `POST https://api.muapi.ai/api/v1/vidu-q2-pro-start-end-video` — Vidu Q2 Pro Start–End Video is a professional-grade model built for cinematic transformation storytelling. It evolves a scene, subject, or concept from one mom… - [Playground](https://muapi.ai/playground/vidu-q2-pro-start-end-video) · [llms.txt](https://muapi.ai/playground/vidu-q2-pro-start-end-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-pro-start-end-video?tab=2) - **vidu-q3-turbo-image-to-video** — `POST https://api.muapi.ai/api/v1/vidu-q3-turbo-image-to-video` — Vidu Q3 Turbo Image-to-Video animates a starting image into a fast, prompt-guided clip while keeping subject identity and composition intact. Built for speed a… - [Playground](https://muapi.ai/playground/vidu-q3-turbo-image-to-video) · [llms.txt](https://muapi.ai/playground/vidu-q3-turbo-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q3-turbo-image-to-video?tab=2) - **pixverse-v6-i2v** — `POST https://api.muapi.ai/api/v1/pixverse-v6-i2v` — Animate any image into a video using PixVerse V6. Supports resolutions up to 1080p, durations up to 15 seconds, and prompt-based motion control. - [Playground](https://muapi.ai/playground/pixverse-v6-i2v) · [llms.txt](https://muapi.ai/playground/pixverse-v6-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v6-i2v?tab=2) - **minimax-hailuo-2.3-pro-i2v** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-2.3-pro-i2v` — Hailuo 2.3 Pro I2V breathes life into still images with stunning motion synthesis and cinematic camera control. Using deep motion understanding, it predicts re… - [Playground](https://muapi.ai/playground/minimax-hailuo-2.3-pro-i2v) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-2.3-pro-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-2.3-pro-i2v?tab=2) - **seedance-2.5-spicy-omni-reference-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-omni-reference-1080p` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-1080p?tab=2) - **seedance-2.5-spicy-first-last-frame-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-first-last-frame-480p` — Seedance 2.5 First & Last Frame 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, generating a smooth video transition betw… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-480p?tab=2) - **openai-sora-2-image-to-video** — `POST https://api.muapi.ai/api/v1/openai-sora-2-image-to-video` — Sora 2’s I2V lets you bring still images to life by animating them into short video clips with natural motion, audio, and visual effects. While realistic portr… - [Playground](https://muapi.ai/playground/openai-sora-2-image-to-video) · [llms.txt](https://muapi.ai/playground/openai-sora-2-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/openai-sora-2-image-to-video?tab=2) - **vidu-q3-pro-image-to-video** — `POST https://api.muapi.ai/api/v1/vidu-q3-pro-image-to-video` — Vidu Q3 Pro Image-to-Video animates a single starting image into a smooth, prompt-guided clip up to 1080p. It preserves character identity, lighting, and compo… - [Playground](https://muapi.ai/playground/vidu-q3-pro-image-to-video) · [llms.txt](https://muapi.ai/playground/vidu-q3-pro-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q3-pro-image-to-video?tab=2) - **minimax-hailuo-2.3-fast** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-2.3-fast` — Minimax Hailuo 2.3 Fast is the lightweight, high-speed version of the Hailuo 2.3 family — designed for creators who need instant video generation with cinemati… - [Playground](https://muapi.ai/playground/minimax-hailuo-2.3-fast) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-2.3-fast/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-2.3-fast?tab=2) - **seedance-2.5-intl-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-image-to-video` — Seedance 2.5 Image-to-Video is the early-access preview build of the Seedance 2.5 family, animating a single image into video. Supports clips up to 30 seconds… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-image-to-video?tab=2) - **happy-horse-1-reference-to-video-1080p** — `POST https://api.muapi.ai/api/v1/happy-horse-1-reference-to-video-1080p` — Happy Horse 1.0 Reference to Video (1080p) - generate expressive 1080p video clips conditioned on 1-9 reference images plus a text prompt. - [Playground](https://muapi.ai/playground/happy-horse-1-reference-to-video-1080p) · [llms.txt](https://muapi.ai/playground/happy-horse-1-reference-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1-reference-to-video-1080p?tab=2) - **ltx-2-fast-image-to-video** — `POST https://api.muapi.ai/api/v1/ltx-2-fast-image-to-video` — LTX-2 Fast is a speed-optimized mode of the LTX-2 engine by Lightricks, focused on generating short video clips from a still image + prompt (I2V) with good fid… - [Playground](https://muapi.ai/playground/ltx-2-fast-image-to-video) · [llms.txt](https://muapi.ai/playground/ltx-2-fast-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2-fast-image-to-video?tab=2) - **happy-horse-1-image-to-video-1080p** — `POST https://api.muapi.ai/api/v1/happy-horse-1-image-to-video-1080p` — Happy Horse 1.0 Image to Video — bring still images to life with fluid, expressive animation and fine-grained motion control. - [Playground](https://muapi.ai/playground/happy-horse-1-image-to-video-1080p) · [llms.txt](https://muapi.ai/playground/happy-horse-1-image-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1-image-to-video-1080p?tab=2) - **hunyuan-image-to-video** — `POST https://api.muapi.ai/api/v1/hunyuan-image-to-video` — Hunyuan I2V takes a static image and generates realistic video animations by interpreting motion and context. It works well for human portraits, objects, or sc… - [Playground](https://muapi.ai/playground/hunyuan-image-to-video) · [llms.txt](https://muapi.ai/playground/hunyuan-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/hunyuan-image-to-video?tab=2) - **pixverse-v5.5-i2v** — `POST https://api.muapi.ai/api/v1/pixverse-v5.5-i2v` — PixVerse v5.5 I2V transforms a single image into a dynamic cinematic video clip. It adds smooth camera motion, atmospheric animation, natural parallax, and env… - [Playground](https://muapi.ai/playground/pixverse-v5.5-i2v) · [llms.txt](https://muapi.ai/playground/pixverse-v5.5-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v5.5-i2v?tab=2) - **seedance-2-vip-first-last-frame-4k** — `POST https://api.muapi.ai/api/v1/seedance-2-vip-first-last-frame-4k` — SD 2 First & Last Frame VIP 4K by ByteDance. Generate 4K video that transitions between two reference images with priority routing. Provide 1 image for start-f… - [Playground](https://muapi.ai/playground/seedance-2-vip-first-last-frame-4k) · [llms.txt](https://muapi.ai/playground/seedance-2-vip-first-last-frame-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-vip-first-last-frame-4k?tab=2) - **minimax-hailuo-2.3-standard-i2v** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-2.3-standard-i2v` — Hailuo 2.3 Standard I2V converts still images into visually immersive motion clips with stable dynamics and realistic movement. It provides a balanced mix of q… - [Playground](https://muapi.ai/playground/minimax-hailuo-2.3-standard-i2v) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-2.3-standard-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-2.3-standard-i2v?tab=2) - **pixverse-v4.5-i2v** — `POST https://api.muapi.ai/api/v1/pixverse-v4.5-i2v` — Upload an image and PixVerse v4.5 will breathe life into it with smooth camera motion, realistic effects, and animated elements. Whether it’s a portrait, lands… - [Playground](https://muapi.ai/playground/pixverse-v4.5-i2v) · [llms.txt](https://muapi.ai/playground/pixverse-v4.5-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v4.5-i2v?tab=2) - **wan2.7-reference-to-video** — `POST https://api.muapi.ai/api/v1/wan2.7-reference-to-video` — Alibaba WAN 2.7 Reference-to-Video. Reference characters/props to generate new shots. - [Playground](https://muapi.ai/playground/wan2.7-reference-to-video) · [llms.txt](https://muapi.ai/playground/wan2.7-reference-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-reference-to-video?tab=2) - **vidu-q2-pro-image-to-video** — `POST https://api.muapi.ai/api/v1/vidu-q2-pro-image-to-video` — Vidu Q2 Pro Image-to-Video animates a single starting image into a smooth, prompt-guided clip up to 1080p while preserving subject identity, lighting, and comp… - [Playground](https://muapi.ai/playground/vidu-q2-pro-image-to-video) · [llms.txt](https://muapi.ai/playground/vidu-q2-pro-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q2-pro-image-to-video?tab=2) - **vidu-v2.0-i2v** — `POST https://api.muapi.ai/api/v1/vidu-v2.0-i2v` — Vidu's 2.0 model delivers advanced image-based video generation with enhanced lighting, emotion dynamics, and automatic frame interpolation for polished visual… - [Playground](https://muapi.ai/playground/vidu-v2.0-i2v) · [llms.txt](https://muapi.ai/playground/vidu-v2.0-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-v2.0-i2v?tab=2) - **happy-horse-1.1-reference-to-video-720p** — `POST https://api.muapi.ai/api/v1/happy-horse-1.1-reference-to-video-720p` — Happy Horse 1.1 Reference to Video (720p) — generate 720p video conditioned on 1-9 reference images plus a text prompt. - [Playground](https://muapi.ai/playground/happy-horse-1.1-reference-to-video-720p) · [llms.txt](https://muapi.ai/playground/happy-horse-1.1-reference-to-video-720p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1.1-reference-to-video-720p?tab=2) - **ovi-image-to-video** — `POST https://api.muapi.ai/api/v1/ovi-image-to-video` — Ovi is a unified audio–video generation model that can transform a static image plus a descriptive prompt into a short video with synchronized audio. It suppor… - [Playground](https://muapi.ai/playground/ovi-image-to-video) · [llms.txt](https://muapi.ai/playground/ovi-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ovi-image-to-video?tab=2) - **happy-horse-1-image-to-video-720p** — `POST https://api.muapi.ai/api/v1/happy-horse-1-image-to-video-720p` — Happy Horse 1.0 Image to Video (720p) — bring still images to life with fluid, expressive animation at 720p output resolution. - [Playground](https://muapi.ai/playground/happy-horse-1-image-to-video-720p) · [llms.txt](https://muapi.ai/playground/happy-horse-1-image-to-video-720p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1-image-to-video-720p?tab=2) - **seedance-2.5-spicy-omni-reference-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-omni-reference-4k` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-omni-reference-4k?tab=2) - **pixverse-v5-i2v** — `POST https://api.muapi.ai/api/v1/pixverse-v5-i2v` — PixVerse V5 delivers a major leap forward in AI-powered video creation — now featuring smoother motion, ultra-high resolution, and expanded visual effects. - [Playground](https://muapi.ai/playground/pixverse-v5-i2v) · [llms.txt](https://muapi.ai/playground/pixverse-v5-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v5-i2v?tab=2) - **seedance-2.5-intl-omni-reference-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-omni-reference-1080p` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-1080p?tab=2) - **wan2.6-image-to-video-spicy** — `POST https://api.muapi.ai/api/v1/wan2.6-image-to-video-spicy` — Alibaba WAN 2.6 Spicy Image-to-Video animates a still image into a bold, high-motion clip with optional audio-guided generation, single- or multi-shot framing,… - [Playground](https://muapi.ai/playground/wan2.6-image-to-video-spicy) · [llms.txt](https://muapi.ai/playground/wan2.6-image-to-video-spicy/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.6-image-to-video-spicy?tab=2) - **kling-o1-standard-reference-to-video** — `POST https://api.muapi.ai/api/v1/kling-o1-standard-reference-to-video` — Kling O1 Standard Reference-to-Video generates a smooth, realistic video using one or multiple reference images as visual guidance. It preserves the visual ide… - [Playground](https://muapi.ai/playground/kling-o1-standard-reference-to-video) · [llms.txt](https://muapi.ai/playground/kling-o1-standard-reference-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-standard-reference-to-video?tab=2) - **happy-horse-1.1-image-to-video-720p** — `POST https://api.muapi.ai/api/v1/happy-horse-1.1-image-to-video-720p` — Happy Horse 1.1 Image to Video (720p) — bring still images to life with fluid, expressive 720p animation. - [Playground](https://muapi.ai/playground/happy-horse-1.1-image-to-video-720p) · [llms.txt](https://muapi.ai/playground/happy-horse-1.1-image-to-video-720p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1.1-image-to-video-720p?tab=2) - **seedance-2.5-image-to-video-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-image-to-video-1080p` — Seedance 2.5 Image-to-Video is the early-access preview build of the Seedance 2.5 family, animating a single image into video. This 1080p variant is natively r… - [Playground](https://muapi.ai/playground/seedance-2.5-image-to-video-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-image-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-image-to-video-1080p?tab=2) - **seedance-2.5-omni-reference-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-omni-reference-4k` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-omni-reference-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-omni-reference-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-omni-reference-4k?tab=2) - **seedance-2.5-spicy-image-to-video-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-image-to-video-1080p` — Seedance 2.5 Image-to-Video is the early-access preview build of the Seedance 2.5 family, animating a single image into video. This 1080p variant is natively r… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-1080p?tab=2) - **wan2.7-image-to-video-spicy** — `POST https://api.muapi.ai/api/v1/wan2.7-image-to-video-spicy` — Alibaba WAN 2.7 Spicy Image-to-Video animates a still image into a bold, high-motion clip with optional audio-guided generation, single- or multi-shot framing,… - [Playground](https://muapi.ai/playground/wan2.7-image-to-video-spicy) · [llms.txt](https://muapi.ai/playground/wan2.7-image-to-video-spicy/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-image-to-video-spicy?tab=2) - **happy-horse-1.1-image-to-video-1080p** — `POST https://api.muapi.ai/api/v1/happy-horse-1.1-image-to-video-1080p` — Happy Horse 1.1 Image to Video (1080p) — bring still images to life with fluid, expressive 1080p animation. - [Playground](https://muapi.ai/playground/happy-horse-1.1-image-to-video-1080p) · [llms.txt](https://muapi.ai/playground/happy-horse-1.1-image-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1.1-image-to-video-1080p?tab=2) - **openai-sora-2-pro-image-to-video** — `POST https://api.muapi.ai/api/v1/openai-sora-2-pro-image-to-video` — Sora 2 Pro I2V brings still images to life, transforming them into short videos with natural motion, realistic lighting, and synchronized audio. Upload your im… - [Playground](https://muapi.ai/playground/openai-sora-2-pro-image-to-video) · [llms.txt](https://muapi.ai/playground/openai-sora-2-pro-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/openai-sora-2-pro-image-to-video?tab=2) - **ltx-2-pro-image-to-video** — `POST https://api.muapi.ai/api/v1/ltx-2-pro-image-to-video` — LTX-2 Pro is the high-fidelity video-generation engine by Lightricks designed for professional workflows, supporting both text-to-video and image-to-video inpu… - [Playground](https://muapi.ai/playground/ltx-2-pro-image-to-video) · [llms.txt](https://muapi.ai/playground/ltx-2-pro-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2-pro-image-to-video?tab=2) - **wan2.1-reference-video** — `POST https://api.muapi.ai/api/v1/wan2.1-reference-video` — WAN 2.1 is an advanced AI model that transforms one or more reference images into a coherent, animated video. By combining characters, objects, or environments… - [Playground](https://muapi.ai/playground/wan2.1-reference-video) · [llms.txt](https://muapi.ai/playground/wan2.1-reference-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.1-reference-video?tab=2) - **minimax-hailuo-02-pro-i2v** — `POST https://api.muapi.ai/api/v1/minimax-hailuo-02-pro-i2v` — Advanced image-to-video with cinematic realism. Adds dynamic camera motion, realistic physics, and atmospheric detail for storytelling. - [Playground](https://muapi.ai/playground/minimax-hailuo-02-pro-i2v) · [llms.txt](https://muapi.ai/playground/minimax-hailuo-02-pro-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-hailuo-02-pro-i2v?tab=2) - **seedance-2.5-first-last-frame-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-first-last-frame-1080p` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-first-last-frame-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-first-last-frame-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-first-last-frame-1080p?tab=2) - **leonardoai-motion-2.0** — `POST https://api.muapi.ai/api/v1/leonardoai-motion-2.0` — Motion 2.0 is Leonardo.AI's cutting-edge model for creating high-quality 5-second videos from text prompts. It offers enhanced control over animation, includin… - [Playground](https://muapi.ai/playground/leonardoai-motion-2.0) · [llms.txt](https://muapi.ai/playground/leonardoai-motion-2.0/llms.txt) · [API Reference](https://muapi.ai/playground/leonardoai-motion-2.0?tab=2) - **seedance-2.5-intl-first-last-frame** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-first-last-frame` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame?tab=2) - **seedance-2.5-first-last-frame-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-first-last-frame-4k` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-first-last-frame-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-first-last-frame-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-first-last-frame-4k?tab=2) - **happy-horse-1.1-reference-to-video-1080p** — `POST https://api.muapi.ai/api/v1/happy-horse-1.1-reference-to-video-1080p` — Happy Horse 1.1 Reference to Video (1080p) — generate 1080p video conditioned on 1-9 reference images plus a text prompt. - [Playground](https://muapi.ai/playground/happy-horse-1.1-reference-to-video-1080p) · [llms.txt](https://muapi.ai/playground/happy-horse-1.1-reference-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1.1-reference-to-video-1080p?tab=2) - **seedance-2.5-spicy-first-last-frame** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-first-last-frame` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame?tab=2) - **seedance-2.5-image-to-video-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-image-to-video-4k` — Seedance 2.5 Image-to-Video is the early-access preview build of the Seedance 2.5 family, animating a single image into video. This 4K variant is upscaled from… - [Playground](https://muapi.ai/playground/seedance-2.5-image-to-video-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-image-to-video-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-image-to-video-4k?tab=2) - **vidu-q1-reference** — `POST https://api.muapi.ai/api/v1/vidu-q1-reference` — Vidu Q1 enables you to generate cinematic 1080p videos using multiple visual references—up to seven images—and text prompts. Designed for consistency, it prese… - [Playground](https://muapi.ai/playground/vidu-q1-reference) · [llms.txt](https://muapi.ai/playground/vidu-q1-reference/llms.txt) · [API Reference](https://muapi.ai/playground/vidu-q1-reference?tab=2) - **happy-horse-1-reference-to-video-720p** — `POST https://api.muapi.ai/api/v1/happy-horse-1-reference-to-video-720p` — Happy Horse 1.0 Reference to Video (720p) - generate expressive 720p video clips conditioned on 1-9 reference images plus a text prompt. - [Playground](https://muapi.ai/playground/happy-horse-1-reference-to-video-720p) · [llms.txt](https://muapi.ai/playground/happy-horse-1-reference-to-video-720p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1-reference-to-video-720p?tab=2) - **seedance-2.5-intl-first-last-frame-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-first-last-frame-1080p` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-1080p?tab=2) - **seedance-2.5-intl-omni-reference-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-omni-reference-4k` — Seedance 2.5 Omni Reference is the early-access preview build of the Seedance 2.5 family, blending multiple reference images, video clips, and audio into a sin… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-omni-reference-4k?tab=2) - **seedance-2.5-spicy-first-last-frame-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-first-last-frame-1080p` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-1080p?tab=2) - **seedance-2.5-spicy-image-to-video-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-image-to-video-4k` — Seedance 2.5 Image-to-Video is the early-access preview build of the Seedance 2.5 family, animating a single image into video. This 4K variant is upscaled from… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-image-to-video-4k?tab=2) - **flux-3-image-to-video** — `POST https://api.muapi.ai/api/v1/flux-3-image-to-video` — FLUX 3 Image-to-Video animates a still image into a cinematic clip with optional native synchronized audio, using Black Forest Labs' unified image/video/audio… - [Playground](https://muapi.ai/playground/flux-3-image-to-video) · [llms.txt](https://muapi.ai/playground/flux-3-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/flux-3-image-to-video?tab=2) - **seedance-2.1-image-to-video** — `POST https://api.muapi.ai/api/v1/seedance-2.1-image-to-video` — Seedance 2.1 Image-to-Video converts a single still image into a high-fidelity cinematic video. This next-generation model delivers enhanced temporal consisten… - [Playground](https://muapi.ai/playground/seedance-2.1-image-to-video) · [llms.txt](https://muapi.ai/playground/seedance-2.1-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.1-image-to-video?tab=2) - **seedance-2.5-intl-first-last-frame-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-first-last-frame-480p` — Seedance 2.5 First & Last Frame 480p is the early-access preview build of the Seedance 2.5 family at 480p resolution, generating a smooth video transition betw… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-480p?tab=2) - **seedance-2.5-intl-first-last-frame-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-first-last-frame-4k` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-first-last-frame-4k?tab=2) - **seedance-2.5-intl-image-to-video-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-image-to-video-1080p` — Seedance 2.5 Image-to-Video is the early-access preview build of the Seedance 2.5 family, animating a single image into video. This 1080p variant is natively r… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-1080p?tab=2) - **seedance-2.5-intl-image-to-video-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-image-to-video-4k` — Seedance 2.5 Image-to-Video is the early-access preview build of the Seedance 2.5 family, animating a single image into video. This 4K variant is upscaled from… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-image-to-video-4k?tab=2) - **seedance-2.5-spicy-first-last-frame-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-first-last-frame-4k` — Seedance 2.5 First & Last Frame is the early-access preview build of the Seedance 2.5 family, generating a smooth video transition between a start and end imag… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-first-last-frame-4k?tab=2) - **veo-4-image-to-video** — `POST https://api.muapi.ai/api/v1/veo-4-image-to-video` — Veo 4 Image to Video — animate any still image with Veo 4's motion synthesis engine, supporting fine-grained camera control and realistic physics at up to 1080… - [Playground](https://muapi.ai/playground/veo-4-image-to-video) · [llms.txt](https://muapi.ai/playground/veo-4-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/veo-4-image-to-video?tab=2) - **wan3.0-image-to-video** — `POST https://api.muapi.ai/api/v1/wan3.0-image-to-video` — Wan 3.0 Image to Video is an upcoming AI video model. Confirmed API controls, output specifications, and pricing will be published at launch. - [Playground](https://muapi.ai/playground/wan3.0-image-to-video) · [llms.txt](https://muapi.ai/playground/wan3.0-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan3.0-image-to-video?tab=2) - **wan3.0-spicy-image-to-video** — `POST https://api.muapi.ai/api/v1/wan3.0-spicy-image-to-video` — Wan 3.0 Spicy Image to Video is an upcoming AI video model. Final Spicy-mode controls, output specifications, and pricing will be published at launch. - [Playground](https://muapi.ai/playground/wan3.0-spicy-image-to-video) · [llms.txt](https://muapi.ai/playground/wan3.0-spicy-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan3.0-spicy-image-to-video?tab=2) ## Video Editing & Effect Models - **autocrop** — `POST https://api.muapi.ai/api/v1/autocrop` — Automatically crop and reframe a specific video segment to your chosen aspect ratio using AI subject tracking. - [Playground](https://muapi.ai/playground/autocrop) · [llms.txt](https://muapi.ai/playground/autocrop/llms.txt) · [API Reference](https://muapi.ai/playground/autocrop?tab=2) - **seedance-2-video-watermark-remover-pro** — `POST https://api.muapi.ai/api/v1/seedance-2-video-watermark-remover-pro` — SD 2 Video Watermark Remover Pro uses the SD 2 AI model to remove watermarks, logos, and overlaid text from videos with high accuracy. Powered by ByteDance's S… - [Playground](https://muapi.ai/playground/seedance-2-video-watermark-remover-pro) · [llms.txt](https://muapi.ai/playground/seedance-2-video-watermark-remover-pro/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-video-watermark-remover-pro?tab=2) - **seedance-2-video-edit** — `POST https://api.muapi.ai/api/v1/seedance-2-video-edit` — SD 2.0 Video Edit modifies existing videos based on text prompts and optional reference images. - [Playground](https://muapi.ai/playground/seedance-2-video-edit) · [llms.txt](https://muapi.ai/playground/seedance-2-video-edit/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-video-edit?tab=2) - **ai-video-upscaler** — `POST https://api.muapi.ai/api/v1/ai-video-upscaler` — The AI Video Upscaler is a powerful tool designed to enhance the resolution and quality of videos. Whether you're working with low-resolution videos that need… - [Playground](https://muapi.ai/playground/ai-video-upscaler) · [llms.txt](https://muapi.ai/playground/ai-video-upscaler/llms.txt) · [API Reference](https://muapi.ai/playground/ai-video-upscaler?tab=2) - **ai-video-upscaler-pro** — `POST https://api.muapi.ai/api/v1/ai-video-upscaler-pro` — The AI Video Upscaler is a powerful tool designed to enhance the resolution and quality of videos. Whether you're working with low-resolution videos that need… - [Playground](https://muapi.ai/playground/ai-video-upscaler-pro) · [llms.txt](https://muapi.ai/playground/ai-video-upscaler-pro/llms.txt) · [API Reference](https://muapi.ai/playground/ai-video-upscaler-pro?tab=2) - **kling-v3.0-pro-motion-control** — `POST https://api.muapi.ai/api/v1/kling-v3.0-pro-motion-control` — Kling V3.0 Pro Motion Control provides the highest level of detail and control for video generation. Suitable for professional workflows requiring complex cine… - [Playground](https://muapi.ai/playground/kling-v3.0-pro-motion-control) · [llms.txt](https://muapi.ai/playground/kling-v3.0-pro-motion-control/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-pro-motion-control?tab=2) - **volcengine-video-to-video-lip-sync** — `POST https://api.muapi.ai/api/v1/volcengine-video-to-video-lip-sync` — Drive a video's lip movements to match a target audio track, producing a lip-synced video output. - [Playground](https://muapi.ai/playground/volcengine-video-to-video-lip-sync) · [llms.txt](https://muapi.ai/playground/volcengine-video-to-video-lip-sync/llms.txt) · [API Reference](https://muapi.ai/playground/volcengine-video-to-video-lip-sync?tab=2) - **seedance-2.5-spicy-video-extend** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-video-extend` — Seedance 2.5 Video Extend extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. This Spicy endp… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-video-extend) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-video-extend/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-video-extend?tab=2) - **gemini-omni-video-edit** — `POST https://api.muapi.ai/api/v1/gemini-omni-video-edit` — Gemini Omni Video Edit — natively multimodal video-to-video editing. Restyle, relight, swap subjects, or rewrite scenes from a source clip with a single prompt… - [Playground](https://muapi.ai/playground/gemini-omni-video-edit) · [llms.txt](https://muapi.ai/playground/gemini-omni-video-edit/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-omni-video-edit?tab=2) - **ai-clipping** — `POST https://api.muapi.ai/api/v1/ai-clipping` — Convert long-form videos into engaging short clips using AI clipping. - [Playground](https://muapi.ai/playground/ai-clipping) · [llms.txt](https://muapi.ai/playground/ai-clipping/llms.txt) · [API Reference](https://muapi.ai/playground/ai-clipping?tab=2) - **topaz-video-upscale** — `POST https://api.muapi.ai/api/v1/topaz-video-upscale` — The AI Video Upscaler is a powerful tool designed to enhance the resolution and quality of videos. Whether you're working with low-resolution videos that need… - [Playground](https://muapi.ai/playground/topaz-video-upscale) · [llms.txt](https://muapi.ai/playground/topaz-video-upscale/llms.txt) · [API Reference](https://muapi.ai/playground/topaz-video-upscale?tab=2) - **wan2.7-video-edit** — `POST https://api.muapi.ai/api/v1/wan2.7-video-edit` — Perform prompt-driven video editing with multi-image reference support. - [Playground](https://muapi.ai/playground/wan2.7-video-edit) · [llms.txt](https://muapi.ai/playground/wan2.7-video-edit/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-video-edit?tab=2) - **seedance-2.5-spicy-video-extend-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-video-extend-480p` — Seedance 2.5 Video Extend 480p extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. This Spicy… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-480p?tab=2) - **video-watermark-remover** — `POST https://api.muapi.ai/api/v1/video-watermark-remover` — The AI Video Watermark Remover is our flagship model designed to remove Sora 2 watermarks, logos, captions, and unwanted text from videos without compromising… - [Playground](https://muapi.ai/playground/video-watermark-remover) · [llms.txt](https://muapi.ai/playground/video-watermark-remover/llms.txt) · [API Reference](https://muapi.ai/playground/video-watermark-remover?tab=2) - **ai-video-face-swap** — `POST https://api.muapi.ai/api/v1/ai-video-face-swap` — Replace faces in videos with stunning realism. Our AI ensures accurate expression transfer, lighting consistency, and smooth frame-by-frame blending. - [Playground](https://muapi.ai/playground/ai-video-face-swap) · [llms.txt](https://muapi.ai/playground/ai-video-face-swap/llms.txt) · [API Reference](https://muapi.ai/playground/ai-video-face-swap?tab=2) - **seedance-v1.5-pro-video-extend** — `POST https://api.muapi.ai/api/v1/seedance-v1.5-pro-video-extend` — Seedance v1.5 Pro Video Extend continues an existing video by generating additional frames that match the original scene’s style, lighting, motion, and mood. I… - [Playground](https://muapi.ai/playground/seedance-v1.5-pro-video-extend) · [llms.txt](https://muapi.ai/playground/seedance-v1.5-pro-video-extend/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-v1.5-pro-video-extend?tab=2) - **kling-v3.0-std-motion-control** — `POST https://api.muapi.ai/api/v1/kling-v3.0-std-motion-control` — Kling V3.0 Standard Motion Control allows for precise control over the camera and subject movement in generated videos. Powered by the latest Kling V3.0 archit… - [Playground](https://muapi.ai/playground/kling-v3.0-std-motion-control) · [llms.txt](https://muapi.ai/playground/kling-v3.0-std-motion-control/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v3.0-std-motion-control?tab=2) - **wan2.2-spicy-video-extend** — `POST https://api.muapi.ai/api/v1/wan2.2-spicy-video-extend` — Wan-2.2-spicy Video Extend continues an existing video by generating new frames that match the original style but add stronger motion, bolder effects, and spic… - [Playground](https://muapi.ai/playground/wan2.2-spicy-video-extend) · [llms.txt](https://muapi.ai/playground/wan2.2-spicy-video-extend/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.2-spicy-video-extend?tab=2) - **video-background-remover** — `POST https://api.muapi.ai/api/v1/video-background-remover` — Video Background Remover automatically removes the background from any video, producing a clean cutout of the subject with a transparent or solid-color backdro… - [Playground](https://muapi.ai/playground/video-background-remover) · [llms.txt](https://muapi.ai/playground/video-background-remover/llms.txt) · [API Reference](https://muapi.ai/playground/video-background-remover?tab=2) - **mmaudio-v2-video-to-video** — `POST https://api.muapi.ai/api/v1/mmaudio-v2-video-to-video` — MMAudio-v2 generates high-quality, synchronized audio from video or text inputs. Seamlessly integrate it with AI video models to create fully-voiced, expressiv… - [Playground](https://muapi.ai/playground/mmaudio-v2-video-to-video) · [llms.txt](https://muapi.ai/playground/mmaudio-v2-video-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/mmaudio-v2-video-to-video?tab=2) - **seedance-2.5-video-edit** — `POST https://api.muapi.ai/api/v1/seedance-2.5-video-edit` — Seedance 2.5 Video Edit edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while the mod… - [Playground](https://muapi.ai/playground/seedance-2.5-video-edit) · [llms.txt](https://muapi.ai/playground/seedance-2.5-video-edit/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-video-edit?tab=2) - **infinitetalk-video-to-video** — `POST https://api.muapi.ai/api/v1/infinitetalk-video-to-video` — InfiniteTalk Video-to-Video enhances or transforms existing videos by syncing the subject’s lip movements and facial expressions with new dialogue or speech. I… - [Playground](https://muapi.ai/playground/infinitetalk-video-to-video) · [llms.txt](https://muapi.ai/playground/infinitetalk-video-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/infinitetalk-video-to-video?tab=2) - **wan2.2-animate** — `POST https://api.muapi.ai/api/v1/wan2.2-animate` — Wan2.2 Animate is a video-to-video model for animating a character or replacing a character in existing video clips. It replicates holistic movement and facial… - [Playground](https://muapi.ai/playground/wan2.2-animate) · [llms.txt](https://muapi.ai/playground/wan2.2-animate/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.2-animate?tab=2) - **video-combiner** — `POST https://api.muapi.ai/api/v1/video-combiner` — Combine multiple short video clips (5s, 10s, etc.) into a single seamless full-length video. Upload your clips in order and choose the final output aspect rati… - [Playground](https://muapi.ai/playground/video-combiner) · [llms.txt](https://muapi.ai/playground/video-combiner/llms.txt) · [API Reference](https://muapi.ai/playground/video-combiner?tab=2) - **kling-v2.6-pro-motion-control** — `POST https://api.muapi.ai/api/v1/kling-v2.6-pro-motion-control` — Kling v2.6 Pro Motion Control allows precise control over camera movement, subject motion, and scene dynamics during video generation. Instead of leaving motio… - [Playground](https://muapi.ai/playground/kling-v2.6-pro-motion-control) · [llms.txt](https://muapi.ai/playground/kling-v2.6-pro-motion-control/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.6-pro-motion-control?tab=2) - **kling-o1-video-edit** — `POST https://api.muapi.ai/api/v1/kling-o1-video-edit` — Kling O1 Video Edit lets you send an existing video clip plus an instruction/prompt to edit or transform the clip while preserving temporal coherence and subje… - [Playground](https://muapi.ai/playground/kling-o1-video-edit) · [llms.txt](https://muapi.ai/playground/kling-o1-video-edit/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-video-edit?tab=2) - **kling-o1-standard-video-edit** — `POST https://api.muapi.ai/api/v1/kling-o1-standard-video-edit` — Kling O1 Standard Video-to-Video Edit modifies an existing video while preserving its original structure, motion, and realism. It is designed for subtle, stabl… - [Playground](https://muapi.ai/playground/kling-o1-standard-video-edit) · [llms.txt](https://muapi.ai/playground/kling-o1-standard-video-edit/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-standard-video-edit?tab=2) - **kling-v2.6-std-motion-control** — `POST https://api.muapi.ai/api/v1/kling-v2.6-std-motion-control` — Kling v2.6 Pro Motion Control allows precise control over camera movement, subject motion, and scene dynamics during video generation. Instead of leaving motio… - [Playground](https://muapi.ai/playground/kling-v2.6-std-motion-control) · [llms.txt](https://muapi.ai/playground/kling-v2.6-std-motion-control/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2.6-std-motion-control?tab=2) - **heygen-video-translate** — `POST https://api.muapi.ai/api/v1/heygen-video-translate` — Convert any video into 175+ languages with synchronized voice translation, AI-voice cloning, and accurate lip sync. Just upload your video (or provide a link),… - [Playground](https://muapi.ai/playground/heygen-video-translate) · [llms.txt](https://muapi.ai/playground/heygen-video-translate/llms.txt) · [API Reference](https://muapi.ai/playground/heygen-video-translate?tab=2) - **seedance-2.5-spicy-video-edit-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-video-edit-480p` — Seedance 2.5 Video Edit 480p edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while th… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-480p?tab=2) - **kling-o1-video-edit-fast** — `POST https://api.muapi.ai/api/v1/kling-o1-video-edit-fast` — Video Edit Fast is the lightweight, high-speed editing mode of Kling O1. It performs quick edits on an existing video without heavy processing—ideal for fast o… - [Playground](https://muapi.ai/playground/kling-o1-video-edit-fast) · [llms.txt](https://muapi.ai/playground/kling-o1-video-edit-fast/llms.txt) · [API Reference](https://muapi.ai/playground/kling-o1-video-edit-fast?tab=2) - **seedance-2.5-video-edit-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-video-edit-1080p` — Seedance 2.5 Video Edit 1080p edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while t… - [Playground](https://muapi.ai/playground/seedance-2.5-video-edit-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-video-edit-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-video-edit-1080p?tab=2) - **runway-aleph-v2v** — `POST https://api.muapi.ai/api/v1/runway-aleph-v2v` — Transform any input video into a new visual style or scene while preserving motion and structure. Aleph V2V lets you apply artistic looks, cinematic lighting,… - [Playground](https://muapi.ai/playground/runway-aleph-v2v) · [llms.txt](https://muapi.ai/playground/runway-aleph-v2v/llms.txt) · [API Reference](https://muapi.ai/playground/runway-aleph-v2v?tab=2) - **ai-captions** — `POST https://api.muapi.ai/api/v1/ai-captions` — Add AI-generated animated captions to any video using Vadoo's caption engine. Supports multiple languages and viral caption themes like Hormozi style. Perfect… - [Playground](https://muapi.ai/playground/ai-captions) · [llms.txt](https://muapi.ai/playground/ai-captions/llms.txt) · [API Reference](https://muapi.ai/playground/ai-captions?tab=2) - **happy-horse-1.1-video-edit-720p** — `POST https://api.muapi.ai/api/v1/happy-horse-1.1-video-edit-720p` — Happy Horse 1.1 Video Edit (720p) — modify an input video using natural-language instructions with optional reference images. - [Playground](https://muapi.ai/playground/happy-horse-1.1-video-edit-720p) · [llms.txt](https://muapi.ai/playground/happy-horse-1.1-video-edit-720p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1.1-video-edit-720p?tab=2) - **seedance-2.5-spicy-video-edit** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-video-edit` — Seedance 2.5 Video Edit edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while the mod… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-video-edit) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-video-edit/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-video-edit?tab=2) - **seedance-2-watermark-remover** — `POST https://api.muapi.ai/api/v1/seedance-2-watermark-remover` — 🎉 FREE for a limited time — Remove SD 2.0 watermarks from videos using LaMa AI inpainting. Automatically detects the watermark region, builds a precise mask v… - [Playground](https://muapi.ai/playground/seedance-2-watermark-remover) · [llms.txt](https://muapi.ai/playground/seedance-2-watermark-remover/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-watermark-remover?tab=2) - **seedance-2.5-video-extend-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-video-extend-480p` — Seedance 2.5 Video Extend 480p extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. - [Playground](https://muapi.ai/playground/seedance-2.5-video-extend-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-video-extend-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-video-extend-480p?tab=2) - **seedance-2.5-video-edit-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-video-edit-480p` — Seedance 2.5 Video Edit 480p edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while th… - [Playground](https://muapi.ai/playground/seedance-2.5-video-edit-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-video-edit-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-video-edit-480p?tab=2) - **wan2.7-video-extend** — `POST https://api.muapi.ai/api/v1/wan2.7-video-extend` — Extend existing videos seamlessly with Wan 2.7. - [Playground](https://muapi.ai/playground/wan2.7-video-extend) · [llms.txt](https://muapi.ai/playground/wan2.7-video-extend/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.7-video-extend?tab=2) - **seedance-2.5-video-extend** — `POST https://api.muapi.ai/api/v1/seedance-2.5-video-extend` — Seedance 2.5 Video Extend extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. - [Playground](https://muapi.ai/playground/seedance-2.5-video-extend) · [llms.txt](https://muapi.ai/playground/seedance-2.5-video-extend/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-video-extend?tab=2) - **wan2.2-edit-video** — `POST https://api.muapi.ai/api/v1/wan2.2-edit-video` — Easily modify existing videos using simple text commands. With Wan 2.2 Video-Edit, you can change attire, character appearance, or other visual elements direct… - [Playground](https://muapi.ai/playground/wan2.2-edit-video) · [llms.txt](https://muapi.ai/playground/wan2.2-edit-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.2-edit-video?tab=2) - **seedance-2.5-spicy-video-extend-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-video-extend-1080p` — Seedance 2.5 Video Extend 1080p extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. This Spic… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-1080p?tab=2) - **happy-horse-1-video-edit-720p** — `POST https://api.muapi.ai/api/v1/happy-horse-1-video-edit-720p` — Happy Horse 1.0 Video Edit (720p) - modify an input video at 720p using a natural-language instruction with optional reference images. - [Playground](https://muapi.ai/playground/happy-horse-1-video-edit-720p) · [llms.txt](https://muapi.ai/playground/happy-horse-1-video-edit-720p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1-video-edit-720p?tab=2) - **happy-horse-1.1-video-edit-1080p** — `POST https://api.muapi.ai/api/v1/happy-horse-1.1-video-edit-1080p` — Happy Horse 1.1 Video Edit (1080p) — modify an input video using natural-language instructions with optional reference images. - [Playground](https://muapi.ai/playground/happy-horse-1.1-video-edit-1080p) · [llms.txt](https://muapi.ai/playground/happy-horse-1.1-video-edit-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1.1-video-edit-1080p?tab=2) - **seedance-2.5-intl-video-extend-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-video-extend-480p` — Seedance 2.5 Video Extend 480p extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. This inter… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-video-extend-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-video-extend-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-video-extend-480p?tab=2) - **seedance-2.5-spicy-video-edit-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-video-edit-4k` — Seedance 2.5 Video Edit 4K edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while the… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-4k?tab=2) - **seedance-2.5-intl-video-edit** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-video-edit` — Seedance 2.5 Video Edit edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while the mod… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-video-edit) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-video-edit/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-video-edit?tab=2) - **luma-flash-reframe** — `POST https://api.muapi.ai/api/v1/luma-flash-reframe` — Transform and resize your videos effortlessly with Ray 2 Flash Reframe. This tool intelligently expands or adjusts your video’s aspect ratio—adding visually co… - [Playground](https://muapi.ai/playground/luma-flash-reframe) · [llms.txt](https://muapi.ai/playground/luma-flash-reframe/llms.txt) · [API Reference](https://muapi.ai/playground/luma-flash-reframe?tab=2) - **seedance-2.5-intl-video-edit-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-video-edit-1080p` — Seedance 2.5 Video Edit 1080p edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while t… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-video-edit-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-video-edit-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-video-edit-1080p?tab=2) - **seedance-2.5-intl-video-edit-480p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-video-edit-480p` — Seedance 2.5 Video Edit 480p edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while th… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-video-edit-480p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-video-edit-480p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-video-edit-480p?tab=2) - **ai-dance-effects** — `POST https://api.muapi.ai/api/v1/ai-dance-effects` — Bring your characters and worlds to life with AI Dance Effects — a creative video effect that adds playful, dynamic, and cinematic motion to your generations.… - [Playground](https://muapi.ai/playground/ai-dance-effects) · [llms.txt](https://muapi.ai/playground/ai-dance-effects/llms.txt) · [API Reference](https://muapi.ai/playground/ai-dance-effects?tab=2) - **ltx-2.3-video-extend** — `POST https://api.muapi.ai/api/v1/ltx-2.3-video-extend` — LTX-2.3 Video Extend seamlessly continues an existing video clip by generating additional frames that match the original motion, style, and scene composition.… - [Playground](https://muapi.ai/playground/ltx-2.3-video-extend) · [llms.txt](https://muapi.ai/playground/ltx-2.3-video-extend/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2.3-video-extend?tab=2) - **remix-video** — `POST https://api.muapi.ai/api/v1/remix-video` — Transform and resize your videos effortlessly with remix video tool. - [Playground](https://muapi.ai/playground/remix-video) · [llms.txt](https://muapi.ai/playground/remix-video/llms.txt) · [API Reference](https://muapi.ai/playground/remix-video?tab=2) - **seedance-v1.5-pro-video-extend-fast** — `POST https://api.muapi.ai/api/v1/seedance-v1.5-pro-video-extend-fast` — Seedance v1.5 Pro Video Extend Fast quickly extends an existing video by generating a short continuation that matches the original style, motion, and lighting.… - [Playground](https://muapi.ai/playground/seedance-v1.5-pro-video-extend-fast) · [llms.txt](https://muapi.ai/playground/seedance-v1.5-pro-video-extend-fast/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-v1.5-pro-video-extend-fast?tab=2) - **add-video-watermark** — `POST https://api.muapi.ai/api/v1/add-video-watermark` — Add custom watermark to videos with adjustable position, opacity, and size. Free local processing using FFmpeg. - [Playground](https://muapi.ai/playground/add-video-watermark) · [llms.txt](https://muapi.ai/playground/add-video-watermark/llms.txt) · [API Reference](https://muapi.ai/playground/add-video-watermark?tab=2) - **seedance-2.5-video-extend-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-video-extend-1080p` — Seedance 2.5 Video Extend 1080p extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. - [Playground](https://muapi.ai/playground/seedance-2.5-video-extend-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-video-extend-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-video-extend-1080p?tab=2) - **motion-graphics-edit** — `POST https://api.muapi.ai/api/v1/motion-graphics-edit` — Edit and modify a previously generated motion graphics animation using a text instruction. - [Playground](https://muapi.ai/playground/motion-graphics-edit) · [llms.txt](https://muapi.ai/playground/motion-graphics-edit/llms.txt) · [API Reference](https://muapi.ai/playground/motion-graphics-edit?tab=2) - **seedance-2.5-spicy-video-edit-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-video-edit-1080p` — Seedance 2.5 Video Edit 1080p edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while t… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-video-edit-1080p?tab=2) - **happy-horse-1-video-edit-1080p** — `POST https://api.muapi.ai/api/v1/happy-horse-1-video-edit-1080p` — Happy Horse 1.0 Video Edit (1080p) - modify an input video at 1080p using a natural-language instruction with optional reference images. - [Playground](https://muapi.ai/playground/happy-horse-1-video-edit-1080p) · [llms.txt](https://muapi.ai/playground/happy-horse-1-video-edit-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/happy-horse-1-video-edit-1080p?tab=2) - **pixverse-v6-extend** — `POST https://api.muapi.ai/api/v1/pixverse-v6-extend` — Extend any existing video with new frames using PixVerse V6. Analyzes the ending segment and generates a seamless continuation with optional style control. - [Playground](https://muapi.ai/playground/pixverse-v6-extend) · [llms.txt](https://muapi.ai/playground/pixverse-v6-extend/llms.txt) · [API Reference](https://muapi.ai/playground/pixverse-v6-extend?tab=2) - **seedance-2.5-intl-video-edit-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-video-edit-4k` — Seedance 2.5 Video Edit 4K edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while the… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-video-edit-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-video-edit-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-video-edit-4k?tab=2) - **seedance-2.5-video-edit-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-video-edit-4k` — Seedance 2.5 Video Edit 4K edits an input video from a natural-language prompt. The reference video drives subject identity, composition, and motion while the… - [Playground](https://muapi.ai/playground/seedance-2.5-video-edit-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-video-edit-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-video-edit-4k?tab=2) - **runway-act-two-v2v** — `POST https://api.muapi.ai/api/v1/runway-act-two-v2v` — Take an existing character video and sync it with the motion from a reference video. This lets you update facial expressions, head turns, and speech gestures w… - [Playground](https://muapi.ai/playground/runway-act-two-v2v) · [llms.txt](https://muapi.ai/playground/runway-act-two-v2v/llms.txt) · [API Reference](https://muapi.ai/playground/runway-act-two-v2v?tab=2) - **seedance-2.5-intl-video-extend** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-video-extend` — Seedance 2.5 Video Extend extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. This internatio… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-video-extend) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-video-extend/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-video-extend?tab=2) - **seedance-2.5-intl-video-extend-1080p** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-video-extend-1080p` — Seedance 2.5 Video Extend 1080p extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. This inte… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-video-extend-1080p) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-video-extend-1080p/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-video-extend-1080p?tab=2) - **seedance-2.5-intl-video-extend-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-intl-video-extend-4k` — Seedance 2.5 Video Extend 4K extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. This interna… - [Playground](https://muapi.ai/playground/seedance-2.5-intl-video-extend-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-intl-video-extend-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-intl-video-extend-4k?tab=2) - **seedance-2.5-spicy-video-extend-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-spicy-video-extend-4k` — Seedance 2.5 Video Extend 4K extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. This Spicy e… - [Playground](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-spicy-video-extend-4k?tab=2) - **seedance-2.5-video-extend-4k** — `POST https://api.muapi.ai/api/v1/seedance-2.5-video-extend-4k` — Seedance 2.5 Video Extend 4K extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt. - [Playground](https://muapi.ai/playground/seedance-2.5-video-extend-4k) · [llms.txt](https://muapi.ai/playground/seedance-2.5-video-extend-4k/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2.5-video-extend-4k?tab=2) ## Audio Models - **minimax-speech-2.6-hd** — `POST https://api.muapi.ai/api/v1/minimax-speech-2.6-hd` — Speech-2.6-hd is Minimax’s high-definition text-to-speech model that turns written text into natural, human-like audio. It produces studio-quality speech with… - [Playground](https://muapi.ai/playground/minimax-speech-2.6-hd) · [llms.txt](https://muapi.ai/playground/minimax-speech-2.6-hd/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-speech-2.6-hd?tab=2) - **suno-create-music** — `POST https://api.muapi.ai/api/v1/suno-create-music` — Suno generate music that turns text prompts into full songs — complete with vocals, lyrics, and instrumentation. You can describe a mood, genre, or even a spec… - [Playground](https://muapi.ai/playground/suno-create-music) · [llms.txt](https://muapi.ai/playground/suno-create-music/llms.txt) · [API Reference](https://muapi.ai/playground/suno-create-music?tab=2) - **gemini-3-1-flash-tts** — `POST https://api.muapi.ai/api/v1/gemini-3-1-flash-tts` — Gemini 3.1 Flash TTS turns written dialogue into expressive, natural multi-speaker speech with fine-grained control over voice, accent, emotional style, and pa… - [Playground](https://muapi.ai/playground/gemini-3-1-flash-tts) · [llms.txt](https://muapi.ai/playground/gemini-3-1-flash-tts/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-3-1-flash-tts?tab=2) - **minimax-speech-2.6-turbo** — `POST https://api.muapi.ai/api/v1/minimax-speech-2.6-turbo` — Speech-2.6-turbo is Minimax’s fast, lightweight text-to-speech model designed for quick audio generation while maintaining good natural voice quality. It produ… - [Playground](https://muapi.ai/playground/minimax-speech-2.6-turbo) · [llms.txt](https://muapi.ai/playground/minimax-speech-2.6-turbo/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-speech-2.6-turbo?tab=2) - **mmaudio-v2-text-to-audio** — `POST https://api.muapi.ai/api/v1/mmaudio-v2-text-to-audio` — Convert text into natural-sounding speech using mmAudio-v2. Ideal for voiceovers, virtual assistants, and content narration with lifelike clarity and tone. - [Playground](https://muapi.ai/playground/mmaudio-v2-text-to-audio) · [llms.txt](https://muapi.ai/playground/mmaudio-v2-text-to-audio/llms.txt) · [API Reference](https://muapi.ai/playground/mmaudio-v2-text-to-audio?tab=2) - **elevenlabs-text-to-dialogue-v3** — `POST https://api.muapi.ai/api/v1/elevenlabs-text-to-dialogue-v3` — Generate expressive, multilingual text-to-dialogue content using the ElevenLabs Text To Dialogue V3 model. - [Playground](https://muapi.ai/playground/elevenlabs-text-to-dialogue-v3) · [llms.txt](https://muapi.ai/playground/elevenlabs-text-to-dialogue-v3/llms.txt) · [API Reference](https://muapi.ai/playground/elevenlabs-text-to-dialogue-v3?tab=2) - **elevenlabs-tts-turbo-2-5** — `POST https://api.muapi.ai/api/v1/elevenlabs-tts-turbo-2-5` — Convert text to natural-sounding speech using the ElevenLabs TTS Turbo 2.5 model, with adjustable stability, similarity, and speed. - [Playground](https://muapi.ai/playground/elevenlabs-tts-turbo-2-5) · [llms.txt](https://muapi.ai/playground/elevenlabs-tts-turbo-2-5/llms.txt) · [API Reference](https://muapi.ai/playground/elevenlabs-tts-turbo-2-5?tab=2) - **suno-extend-music** — `POST https://api.muapi.ai/api/v1/suno-extend-music` — This API extends audio tracks while preserving the original style of the audio track. It includes Suno's upload functionality, allowing users to upload audio f… - [Playground](https://muapi.ai/playground/suno-extend-music) · [llms.txt](https://muapi.ai/playground/suno-extend-music/llms.txt) · [API Reference](https://muapi.ai/playground/suno-extend-music?tab=2) - **suno-remix-music** — `POST https://api.muapi.ai/api/v1/suno-remix-music` — This API covers an audio track by transforming it into a new style while retaining its core melody. It incorporates Suno's upload capability, enabling users to… - [Playground](https://muapi.ai/playground/suno-remix-music) · [llms.txt](https://muapi.ai/playground/suno-remix-music/llms.txt) · [API Reference](https://muapi.ai/playground/suno-remix-music?tab=2) - **suno-generate-sounds** — `POST https://api.muapi.ai/api/v1/suno-generate-sounds` — Generate sound effects using Suno chirp-crow model. - [Playground](https://muapi.ai/playground/suno-generate-sounds) · [llms.txt](https://muapi.ai/playground/suno-generate-sounds/llms.txt) · [API Reference](https://muapi.ai/playground/suno-generate-sounds?tab=2) - **gemini-2-5-pro-tts** — `POST https://api.muapi.ai/api/v1/gemini-2-5-pro-tts` — Gemini 2.5 Pro TTS is Google's premium text-to-speech model for studio-quality, high-fidelity multi-speaker audio with expressive control over voice, accent, e… - [Playground](https://muapi.ai/playground/gemini-2-5-pro-tts) · [llms.txt](https://muapi.ai/playground/gemini-2-5-pro-tts/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-2-5-pro-tts?tab=2) - **minimax-voice-clone** — `POST https://api.muapi.ai/api/v1/minimax-voice-clone` — Minimax Voice Clone creates a high-fidelity digital clone of a speaker’s voice from a short reference audio sample. It reproduces the speaker’s tone, emotion,… - [Playground](https://muapi.ai/playground/minimax-voice-clone) · [llms.txt](https://muapi.ai/playground/minimax-voice-clone/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-voice-clone?tab=2) - **suno-voice-clone** — `POST https://api.muapi.ai/api/v1/suno-voice-clone` — Clone your singing voice in two takes for use with Suno music generation. Submit a 10-second sample, then read back a fresh random phrase the system generates… - [Playground](https://muapi.ai/playground/suno-voice-clone) · [llms.txt](https://muapi.ai/playground/suno-voice-clone/llms.txt) · [API Reference](https://muapi.ai/playground/suno-voice-clone?tab=2) - **suno-add-instrumental** — `POST https://api.muapi.ai/api/v1/suno-add-instrumental` — Add instrumental backing to acapella audio. - [Playground](https://muapi.ai/playground/suno-add-instrumental) · [llms.txt](https://muapi.ai/playground/suno-add-instrumental/llms.txt) · [API Reference](https://muapi.ai/playground/suno-add-instrumental?tab=2) - **suno-add-vocals** — `POST https://api.muapi.ai/api/v1/suno-add-vocals` — Add vocals to an instrumental track. - [Playground](https://muapi.ai/playground/suno-add-vocals) · [llms.txt](https://muapi.ai/playground/suno-add-vocals/llms.txt) · [API Reference](https://muapi.ai/playground/suno-add-vocals?tab=2) - **suno-generate-mashup** — `POST https://api.muapi.ai/api/v1/suno-generate-mashup` — Create a mashup using 1-5 audio tracks. - [Playground](https://muapi.ai/playground/suno-generate-mashup) · [llms.txt](https://muapi.ai/playground/suno-generate-mashup/llms.txt) · [API Reference](https://muapi.ai/playground/suno-generate-mashup?tab=2) - **suno-convert-to-wav** — `POST https://api.muapi.ai/api/v1/suno-convert-to-wav` — Converts an existing Suno-generated music track to high-quality, uncompressed WAV format for professional editing and processing. Provide the task_id from a pr… - [Playground](https://muapi.ai/playground/suno-convert-to-wav) · [llms.txt](https://muapi.ai/playground/suno-convert-to-wav/llms.txt) · [API Reference](https://muapi.ai/playground/suno-convert-to-wav?tab=2) - **minimax-music-3.0** — `POST https://api.muapi.ai/api/v1/minimax-music-3.0` — Generate a full song with vocals or an instrumental-only track from a text prompt and structured lyrics with MiniMax Music 3.0. - [Playground](https://muapi.ai/playground/minimax-music-3.0) · [llms.txt](https://muapi.ai/playground/minimax-music-3.0/llms.txt) · [API Reference](https://muapi.ai/playground/minimax-music-3.0?tab=2) ## Lipsync / Audio-to-Video Models - **infinitetalk-image-to-video** — `POST https://api.muapi.ai/api/v1/infinitetalk-image-to-video` — InfiniteTalk Image-to-Video brings still portraits and character photos to life by generating natural, realistic talking videos. You provide a single face imag… - [Playground](https://muapi.ai/playground/infinitetalk-image-to-video) · [llms.txt](https://muapi.ai/playground/infinitetalk-image-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/infinitetalk-image-to-video?tab=2) - **omnihuman-1-5** — `POST https://api.muapi.ai/api/v1/omnihuman-1-5` — Generate realistic talking head video from portrait image and audio using KIE OmniHuman 1.5. - [Playground](https://muapi.ai/playground/omnihuman-1-5) · [llms.txt](https://muapi.ai/playground/omnihuman-1-5/llms.txt) · [API Reference](https://muapi.ai/playground/omnihuman-1-5?tab=2) - **ltx-2.3-lipsync** — `POST https://api.muapi.ai/api/v1/ltx-2.3-lipsync` — LTX-2.3 LipSync generates a realistic talking video by synchronizing mouth movements to an input audio clip. It preserves facial identity, head position, light… - [Playground](https://muapi.ai/playground/ltx-2.3-lipsync) · [llms.txt](https://muapi.ai/playground/ltx-2.3-lipsync/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2.3-lipsync?tab=2) - **sync-lipsync** — `POST https://api.muapi.ai/api/v1/sync-lipsync` — Generate realistic lipsync animations from audio using advanced algorithms for high-quality synchronization. - [Playground](https://muapi.ai/playground/sync-lipsync) · [llms.txt](https://muapi.ai/playground/sync-lipsync/llms.txt) · [API Reference](https://muapi.ai/playground/sync-lipsync?tab=2) - **veed-lipsync** — `POST https://api.muapi.ai/api/v1/veed-lipsync` — Generate realistic lipsync from any audio using VEED's latest model - [Playground](https://muapi.ai/playground/veed-lipsync) · [llms.txt](https://muapi.ai/playground/veed-lipsync/llms.txt) · [API Reference](https://muapi.ai/playground/veed-lipsync?tab=2) - **wan2.2-speech-to-video** — `POST https://api.muapi.ai/api/v1/wan2.2-speech-to-video` — WAN2.2 Speech-to-Video transforms a static image into a talking video by synchronizing lip movements and facial expressions with an audio input. Simply provide… - [Playground](https://muapi.ai/playground/wan2.2-speech-to-video) · [llms.txt](https://muapi.ai/playground/wan2.2-speech-to-video/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.2-speech-to-video?tab=2) - **kling-v2-avatar-pro** — `POST https://api.muapi.ai/api/v1/kling-v2-avatar-pro` — AI-Avatar v2 Pro takes a reference image of a person/character and an audio dialogue clip, then generates a realistic talking-avatar video. It preserves identi… - [Playground](https://muapi.ai/playground/kling-v2-avatar-pro) · [llms.txt](https://muapi.ai/playground/kling-v2-avatar-pro/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2-avatar-pro?tab=2) - **latent-sync** — `POST https://api.muapi.ai/api/v1/latent-sync` — LatentSync is a video-to-video model that generates lip sync animations from audio using advanced algorithms for high-quality synchronization. - [Playground](https://muapi.ai/playground/latent-sync) · [llms.txt](https://muapi.ai/playground/latent-sync/llms.txt) · [API Reference](https://muapi.ai/playground/latent-sync?tab=2) - **kling-v2-avatar-standard** — `POST https://api.muapi.ai/api/v1/kling-v2-avatar-standard` — AI-Avatar v2 Standard generates a talking-avatar video from a reference image and an audio dialogue. It performs accurate lip-sync, natural facial expressions,… - [Playground](https://muapi.ai/playground/kling-v2-avatar-standard) · [llms.txt](https://muapi.ai/playground/kling-v2-avatar-standard/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v2-avatar-standard?tab=2) - **creatify-lipsync** — `POST https://api.muapi.ai/api/v1/creatify-lipsync` — Realistic lipsync video - optimized for speed, quality, and consistency. - [Playground](https://muapi.ai/playground/creatify-lipsync) · [llms.txt](https://muapi.ai/playground/creatify-lipsync/llms.txt) · [API Reference](https://muapi.ai/playground/creatify-lipsync?tab=2) - **ltx-2-19b-lipsync** — `POST https://api.muapi.ai/api/v1/ltx-2-19b-lipsync` — LTX-2-19B LipSync generates a realistic talking video by synchronizing a person’s mouth movements to an input audio clip. It preserves facial identity, head po… - [Playground](https://muapi.ai/playground/ltx-2-19b-lipsync) · [llms.txt](https://muapi.ai/playground/ltx-2-19b-lipsync/llms.txt) · [API Reference](https://muapi.ai/playground/ltx-2-19b-lipsync?tab=2) - **kling-v1-avatar-standard** — `POST https://api.muapi.ai/api/v1/kling-v1-avatar-standard` — Kling AI Avatar Standard creates talking avatar videos from a single image + audio input. It supports realistic humans, animals, or stylized characters, produc… - [Playground](https://muapi.ai/playground/kling-v1-avatar-standard) · [llms.txt](https://muapi.ai/playground/kling-v1-avatar-standard/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v1-avatar-standard?tab=2) - **kling-v1-avatar-pro** — `POST https://api.muapi.ai/api/v1/kling-v1-avatar-pro` — Kling AI Avatar Pro is the premium tier for making high-quality talking avatars. You upload a character image plus an audio file, and the model generates a rea… - [Playground](https://muapi.ai/playground/kling-v1-avatar-pro) · [llms.txt](https://muapi.ai/playground/kling-v1-avatar-pro/llms.txt) · [API Reference](https://muapi.ai/playground/kling-v1-avatar-pro?tab=2) ## 3D Models - **meshy-6-multi-image-to-3d** — `POST https://api.muapi.ai/api/v1/meshy-6-multi-image-to-3d` — Reconstruct a 3D mesh from 1-4 reference images. Multi-view inputs produce more accurate geometry for complex or asymmetric objects. - [Playground](https://muapi.ai/playground/meshy-6-multi-image-to-3d) · [llms.txt](https://muapi.ai/playground/meshy-6-multi-image-to-3d/llms.txt) · [API Reference](https://muapi.ai/playground/meshy-6-multi-image-to-3d?tab=2) - **meshy-6-image-to-3d** — `POST https://api.muapi.ai/api/v1/meshy-6-image-to-3d` — Generate a clean 3D mesh from a single reference image. Output is a textured .glb plus FBX/OBJ/USDZ alternatives. Optional PBR materials and rigging-ready outp… - [Playground](https://muapi.ai/playground/meshy-6-image-to-3d) · [llms.txt](https://muapi.ai/playground/meshy-6-image-to-3d/llms.txt) · [API Reference](https://muapi.ai/playground/meshy-6-image-to-3d?tab=2) - **tripo3d-h31-image-to-3d** — `POST https://api.muapi.ai/api/v1/tripo3d-h31-image-to-3d` — Convert a single image into a highly detailed 3D model with selectable texture quality and optional quad topology. Ideal for product visualisation and game ass… - [Playground](https://muapi.ai/playground/tripo3d-h31-image-to-3d) · [llms.txt](https://muapi.ai/playground/tripo3d-h31-image-to-3d/llms.txt) · [API Reference](https://muapi.ai/playground/tripo3d-h31-image-to-3d?tab=2) - **tripo3d-p1-image-to-3d** — `POST https://api.muapi.ai/api/v1/tripo3d-p1-image-to-3d` — Turn a single reference image into a textured 3D mesh. Output is a watertight .glb ready for game engines, AR, or 3D printing pipelines. - [Playground](https://muapi.ai/playground/tripo3d-p1-image-to-3d) · [llms.txt](https://muapi.ai/playground/tripo3d-p1-image-to-3d/llms.txt) · [API Reference](https://muapi.ai/playground/tripo3d-p1-image-to-3d?tab=2) - **tripo3d-h31-multiview-to-3d** — `POST https://api.muapi.ai/api/v1/tripo3d-h31-multiview-to-3d` — Reconstruct a 3D model from 2-4 reference images taken from different angles. Multi-view consistency yields the most accurate geometry for asymmetric objects. - [Playground](https://muapi.ai/playground/tripo3d-h31-multiview-to-3d) · [llms.txt](https://muapi.ai/playground/tripo3d-h31-multiview-to-3d/llms.txt) · [API Reference](https://muapi.ai/playground/tripo3d-h31-multiview-to-3d?tab=2) ## 3D Models - **tripo3d-h31-text-to-3d** — `POST https://api.muapi.ai/api/v1/tripo3d-h31-text-to-3d` — High-quality text-to-3D with selectable texture and geometry quality, optional PBR materials, and quad-topology output. Best for game-ready assets. - [Playground](https://muapi.ai/playground/tripo3d-h31-text-to-3d) · [llms.txt](https://muapi.ai/playground/tripo3d-h31-text-to-3d/llms.txt) · [API Reference](https://muapi.ai/playground/tripo3d-h31-text-to-3d?tab=2) - **meshy-6-text-to-3d** — `POST https://api.muapi.ai/api/v1/meshy-6-text-to-3d` — Generate detailed 3D models from text with configurable topology, polygon count, symmetry, and optional PBR materials. Tuned for clean game-ready output. - [Playground](https://muapi.ai/playground/meshy-6-text-to-3d) · [llms.txt](https://muapi.ai/playground/meshy-6-text-to-3d/llms.txt) · [API Reference](https://muapi.ai/playground/meshy-6-text-to-3d?tab=2) - **tripo3d-p1-text-to-3d** — `POST https://api.muapi.ai/api/v1/tripo3d-p1-text-to-3d` — Generate textured 3D meshes directly from a text prompt. Outputs a clean .glb with optional PBR textures and configurable polygon count. - [Playground](https://muapi.ai/playground/tripo3d-p1-text-to-3d) · [llms.txt](https://muapi.ai/playground/tripo3d-p1-text-to-3d/llms.txt) · [API Reference](https://muapi.ai/playground/tripo3d-p1-text-to-3d?tab=2) ## Training Models - **seedance-2-omni-reference-train** — `POST https://api.muapi.ai/api/v1/seedance-2-omni-reference-train` — Train a reusable character from a reference photo. Once complete, reference the character in Omni Reference video prompts using @omni-character: to… - [Playground](https://muapi.ai/playground/seedance-2-omni-reference-train) · [llms.txt](https://muapi.ai/playground/seedance-2-omni-reference-train/llms.txt) · [API Reference](https://muapi.ai/playground/seedance-2-omni-reference-train?tab=2) - **flux-dev-lora** — `POST https://api.muapi.ai/api/v1/flux-dev-lora` — Enables text-to-image generation using custom LoRA models. Generate consistent characters, styles, or branded visuals with high quality and fast results. - [Playground](https://muapi.ai/playground/flux-dev-lora) · [llms.txt](https://muapi.ai/playground/flux-dev-lora/llms.txt) · [API Reference](https://muapi.ai/playground/flux-dev-lora?tab=2) - **sdxl-lora** — `POST https://api.muapi.ai/api/v1/sdxl-lora` — The SDXL LoRA image model enhances Stable Diffusion XL with specialized fine-tuning, letting you generate images in unique styles, characters, or themes. By ap… - [Playground](https://muapi.ai/playground/sdxl-lora) · [llms.txt](https://muapi.ai/playground/sdxl-lora/llms.txt) · [API Reference](https://muapi.ai/playground/sdxl-lora?tab=2) - **flux-lora-trainer** — `POST https://api.muapi.ai/api/v1/flux-lora-trainer` — Train a custom Flux LoRA from your own images. Upload a .zip of 10-50 photos (and optional captions) with a trigger phrase, and receive a portable .safetensors… - [Playground](https://muapi.ai/playground/flux-lora-trainer) · [llms.txt](https://muapi.ai/playground/flux-lora-trainer/llms.txt) · [API Reference](https://muapi.ai/playground/flux-lora-trainer?tab=2) - **flux-2-klein-9b-style-lora-trainer** — `POST https://api.muapi.ai/api/v1/flux-2-klein-9b-style-lora-trainer` — Produce style-focused LoRA adapters on top of the FLUX.2 [klein] 9B architecture. Upload a ZIP dataset with training images and optional captions. - [Playground](https://muapi.ai/playground/flux-2-klein-9b-style-lora-trainer) · [llms.txt](https://muapi.ai/playground/flux-2-klein-9b-style-lora-trainer/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-9b-style-lora-trainer?tab=2) - **z-image-lora-trainer** — `POST https://api.muapi.ai/api/v1/z-image-lora-trainer` — Train custom image LoRA models from your dataset with zip uploads, auto-tuned defaults, and fast iteration for brand, character, or IP looks. - [Playground](https://muapi.ai/playground/z-image-lora-trainer) · [llms.txt](https://muapi.ai/playground/z-image-lora-trainer/llms.txt) · [API Reference](https://muapi.ai/playground/z-image-lora-trainer?tab=2) - **wan2.1-lora-i2v** — `POST https://api.muapi.ai/api/v1/wan2.1-lora-i2v` — Bring still images to life using WAN 2.1 LoRA I2V, which supports custom LoRA fine-tunes for identity consistency. Animate expressions, subtle movements, or fu… - [Playground](https://muapi.ai/playground/wan2.1-lora-i2v) · [llms.txt](https://muapi.ai/playground/wan2.1-lora-i2v/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.1-lora-i2v?tab=2) - **qwen-image-lora-trainer** — `POST https://api.muapi.ai/api/v1/qwen-image-lora-trainer` — Train custom Qwen-Image LoRA models 10x faster. Fine-tune styles, characters, or object concepts from a ZIP dataset with auto-tuned learning rates and steps. - [Playground](https://muapi.ai/playground/qwen-image-lora-trainer) · [llms.txt](https://muapi.ai/playground/qwen-image-lora-trainer/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-lora-trainer?tab=2) - **flux-1-dev-style-lora-trainer** — `POST https://api.muapi.ai/api/v1/flux-1-dev-style-lora-trainer` — Produce style-focused LoRA adapters on top of the FLUX.1 [dev] architecture. Upload a ZIP dataset with training images and optional captions. - [Playground](https://muapi.ai/playground/flux-1-dev-style-lora-trainer) · [llms.txt](https://muapi.ai/playground/flux-1-dev-style-lora-trainer/llms.txt) · [API Reference](https://muapi.ai/playground/flux-1-dev-style-lora-trainer?tab=2) - **wan2.1-lora-t2v** — `POST https://api.muapi.ai/api/v1/wan2.1-lora-t2v` — WAN 2.1 LoRA T2V enables users to generate videos from text prompts with custom-trained LoRA modules. Tailor the generation to specific characters, outfits, or… - [Playground](https://muapi.ai/playground/wan2.1-lora-t2v) · [llms.txt](https://muapi.ai/playground/wan2.1-lora-t2v/llms.txt) · [API Reference](https://muapi.ai/playground/wan2.1-lora-t2v?tab=2) - **flux-2-klein-4b-style-lora-trainer** — `POST https://api.muapi.ai/api/v1/flux-2-klein-4b-style-lora-trainer` — Produce style-focused LoRA adapters on top of the FLUX.2 [klein] 4B architecture. Upload a ZIP dataset with training images and optional captions. - [Playground](https://muapi.ai/playground/flux-2-klein-4b-style-lora-trainer) · [llms.txt](https://muapi.ai/playground/flux-2-klein-4b-style-lora-trainer/llms.txt) · [API Reference](https://muapi.ai/playground/flux-2-klein-4b-style-lora-trainer?tab=2) - **qwen-image-2512-lora-trainer** — `POST https://api.muapi.ai/api/v1/qwen-image-2512-lora-trainer` — Train custom Qwen-Image-2512 LoRA models 10x faster with style, character, and object training. Upload a ZIP dataset with images to start. - [Playground](https://muapi.ai/playground/qwen-image-2512-lora-trainer) · [llms.txt](https://muapi.ai/playground/qwen-image-2512-lora-trainer/llms.txt) · [API Reference](https://muapi.ai/playground/qwen-image-2512-lora-trainer?tab=2) ## Text Models - **claude-sonnet-5** — `POST https://api.muapi.ai/api/v1/claude-sonnet-5` — Claude Sonnet 5 is Anthropic's flagship balanced model, offering the optimal combination of cost and state-of-the-art performance for coding, complex reasoning… - [Playground](https://muapi.ai/playground/claude-sonnet-5) · [llms.txt](https://muapi.ai/playground/claude-sonnet-5/llms.txt) · [API Reference](https://muapi.ai/playground/claude-sonnet-5?tab=2) - **claude-haiku-4-5** — `POST https://api.muapi.ai/api/v1/claude-haiku-4-5` — Claude Haiku 4.5 is Anthropic's fastest and most cost-effective model, designed for high-frequency queries, simple tasks, and near-instant response times. Supp… - [Playground](https://muapi.ai/playground/claude-haiku-4-5) · [llms.txt](https://muapi.ai/playground/claude-haiku-4-5/llms.txt) · [API Reference](https://muapi.ai/playground/claude-haiku-4-5?tab=2) - **gemini-3-5-flash** — `POST https://api.muapi.ai/api/v1/gemini-3-5-flash` — Gemini 3.5 Flash is a high-speed, multimodal language model built for real-time text generation, supporting text and image inputs natively. Token-based pricing… - [Playground](https://muapi.ai/playground/gemini-3-5-flash) · [llms.txt](https://muapi.ai/playground/gemini-3-5-flash/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-3-5-flash?tab=2) - **gemini-3-flash** — `POST https://api.muapi.ai/api/v1/gemini-3-flash` — Gemini 3 Flash is a fast, multimodal language model for real-time text generation. Supports text and image inputs, function calling, and Google Search groundin… - [Playground](https://muapi.ai/playground/gemini-3-flash) · [llms.txt](https://muapi.ai/playground/gemini-3-flash/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-3-flash?tab=2) - **gpt-5-mini** — `POST https://api.muapi.ai/api/v1/gpt-5-mini` — GPT‑5 Mini is a compact yet powerful AI that converts plain text ideas into detailed, structured prompts suitable for use in text-to-image, text-to-video, and… - [Playground](https://muapi.ai/playground/gpt-5-mini) · [llms.txt](https://muapi.ai/playground/gpt-5-mini/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-5-mini?tab=2) - **gemini-2-5-flash** — `POST https://api.muapi.ai/api/v1/gemini-2-5-flash` — Gemini 2.5 Flash is Google's high-speed multimodal language model, optimized for rapid text generation, real-time image understanding, and high-frequency tasks… - [Playground](https://muapi.ai/playground/gemini-2-5-flash) · [llms.txt](https://muapi.ai/playground/gemini-2-5-flash/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-2-5-flash?tab=2) - **gpt-5-nano** — `POST https://api.muapi.ai/api/v1/gpt-5-nano` — GPT-5 Nano is a lightweight, high-speed language model from the GPT-5 family designed for instant text generation. It delivers intelligent, context-aware respo… - [Playground](https://muapi.ai/playground/gpt-5-nano) · [llms.txt](https://muapi.ai/playground/gpt-5-nano/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-5-nano?tab=2) - **grok-4-5** — `POST https://api.muapi.ai/api/v1/grok-4-5` — Grok 4.5 is a highly capable multimodal reasoning model, supporting mixed text/image inputs, adjustable reasoning effort, and integrated web search tools. Toke… - [Playground](https://muapi.ai/playground/grok-4-5) · [llms.txt](https://muapi.ai/playground/grok-4-5/llms.txt) · [API Reference](https://muapi.ai/playground/grok-4-5?tab=2) - **gemini-3-6-flash** — `POST https://api.muapi.ai/api/v1/gemini-3-6-flash` — Gemini 3.6 Flash is a high-speed, multimodal language model built for real-time text generation, supporting text and image inputs natively. Token-based pricing… - [Playground](https://muapi.ai/playground/gemini-3-6-flash) · [llms.txt](https://muapi.ai/playground/gemini-3-6-flash/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-3-6-flash?tab=2) - **claude-sonnet-4-6** — `POST https://api.muapi.ai/api/v1/claude-sonnet-4-6` — Claude Sonnet 4.6 delivers strong reasoning, advanced coding, and native computer-use functionality. Supports text and image inputs with up to 1M token context… - [Playground](https://muapi.ai/playground/claude-sonnet-4-6) · [llms.txt](https://muapi.ai/playground/claude-sonnet-4-6/llms.txt) · [API Reference](https://muapi.ai/playground/claude-sonnet-4-6?tab=2) - **openrouter-vision** — `POST https://api.muapi.ai/api/v1/openrouter-vision` — Any LLM is a versatile large language model for text generation, comprehension, and diverse NLP tasks such as chat and summarization. Ready-to-use REST inferen… - [Playground](https://muapi.ai/playground/openrouter-vision) · [llms.txt](https://muapi.ai/playground/openrouter-vision/llms.txt) · [API Reference](https://muapi.ai/playground/openrouter-vision?tab=2) - **gemini-3-6-flash-openai** — `POST https://api.muapi.ai/api/v1/gemini-3-6-flash-openai` — Gemini 3.6 Flash (OpenAI-compatible) is a high-speed, multimodal language model built for real-time text generation, supporting text and image inputs natively.… - [Playground](https://muapi.ai/playground/gemini-3-6-flash-openai) · [llms.txt](https://muapi.ai/playground/gemini-3-6-flash-openai/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-3-6-flash-openai?tab=2) - **gemini-3-pro** — `POST https://api.muapi.ai/api/v1/gemini-3-pro` — Gemini 3 Pro is Google's powerful multimodal reasoning model, designed for complex problem solving, coding, and logical tasks. Supports text and image inputs.… - [Playground](https://muapi.ai/playground/gemini-3-pro) · [llms.txt](https://muapi.ai/playground/gemini-3-pro/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-3-pro?tab=2) - **gpt-5-2** — `POST https://api.muapi.ai/api/v1/gpt-5-2` — GPT 5.2 is a lightweight reasoning model with fast response times and deep coding capabilities. Supports image inputs, system prompts, web search capabilities,… - [Playground](https://muapi.ai/playground/gpt-5-2) · [llms.txt](https://muapi.ai/playground/gpt-5-2/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-5-2?tab=2) - **any-llm** — `POST https://api.muapi.ai/api/v1/any-llm` — Any LLM is a versatile large language model for text generation, comprehension, and diverse NLP tasks such as chat and summarization. Ready-to-use REST inferen… - [Playground](https://muapi.ai/playground/any-llm) · [llms.txt](https://muapi.ai/playground/any-llm/llms.txt) · [API Reference](https://muapi.ai/playground/any-llm?tab=2) - **claude-opus-4-8** — `POST https://api.muapi.ai/api/v1/claude-opus-4-8` — Claude Opus 4.8 is Anthropic's most capable model for complex coding, long-context reasoning, and agentic workflows. Supports text and image inputs. Token-base… - [Playground](https://muapi.ai/playground/claude-opus-4-8) · [llms.txt](https://muapi.ai/playground/claude-opus-4-8/llms.txt) · [API Reference](https://muapi.ai/playground/claude-opus-4-8?tab=2) - **gemini-3-5-flash-openai** — `POST https://api.muapi.ai/api/v1/gemini-3-5-flash-openai` — Gemini 3.5 Flash (OpenAI-compatible) is a high-speed, multimodal language model built for real-time text generation, supporting text and image inputs natively.… - [Playground](https://muapi.ai/playground/gemini-3-5-flash-openai) · [llms.txt](https://muapi.ai/playground/gemini-3-5-flash-openai/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-3-5-flash-openai?tab=2) - **gemini-audio-vision** — `POST https://api.muapi.ai/api/v1/gemini-audio-vision` — Gemini Audio Vision uses Google Gemini's native audio understanding to analyze and describe audio content in detail — speech, tone, background sounds, speaker… - [Playground](https://muapi.ai/playground/gemini-audio-vision) · [llms.txt](https://muapi.ai/playground/gemini-audio-vision/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-audio-vision?tab=2) - **claude-sonnet-4-5** — `POST https://api.muapi.ai/api/v1/claude-sonnet-4-5` — Claude Sonnet 4.5 is Anthropic's state-of-the-art model offering high intelligence, speed, and efficiency for code generation, writing, and logical analysis. S… - [Playground](https://muapi.ai/playground/claude-sonnet-4-5) · [llms.txt](https://muapi.ai/playground/claude-sonnet-4-5/llms.txt) · [API Reference](https://muapi.ai/playground/claude-sonnet-4-5?tab=2) - **gemini-3-1-pro** — `POST https://api.muapi.ai/api/v1/gemini-3-1-pro` — Gemini 3.1 Pro is Google's next-generation multimodal model, optimized for complex reasoning, planning, coding, and multi-turn conversation. Supports text and… - [Playground](https://muapi.ai/playground/gemini-3-1-pro) · [llms.txt](https://muapi.ai/playground/gemini-3-1-pro/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-3-1-pro?tab=2) - **gpt-5-6-sol** — `POST https://api.muapi.ai/api/v1/gpt-5-6-sol` — GPT 5.6 Sol is OpenAI's flagship reasoning model, optimized for complex math, programming, and scientific research. Supports mixed text and image inputs, adjus… - [Playground](https://muapi.ai/playground/gpt-5-6-sol) · [llms.txt](https://muapi.ai/playground/gpt-5-6-sol/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-5-6-sol?tab=2) - **gpt-5-4** — `POST https://api.muapi.ai/api/v1/gpt-5-4` — GPT-5.4 delivers powerful reasoning, coding, and professional knowledge work. Supports multimodal inputs (text and image) with adjustable reasoning depth. Toke… - [Playground](https://muapi.ai/playground/gpt-5-4) · [llms.txt](https://muapi.ai/playground/gpt-5-4/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-5-4?tab=2) - **claude-opus-5** — `POST https://api.muapi.ai/api/v1/claude-opus-5` — Claude Opus 5 is Anthropic's flagship most capable model, offering state-of-the-art performance for complex coding, reasoning, and multimodal analysis. Support… - [Playground](https://muapi.ai/playground/claude-opus-5) · [llms.txt](https://muapi.ai/playground/claude-opus-5/llms.txt) · [API Reference](https://muapi.ai/playground/claude-opus-5?tab=2) - **gemini-video-vision** — `POST https://api.muapi.ai/api/v1/gemini-video-vision` — Gemini Video Vision uses Google Gemini's native video understanding to analyze and describe video content in detail — motion, composition, subjects, on-screen… - [Playground](https://muapi.ai/playground/gemini-video-vision) · [llms.txt](https://muapi.ai/playground/gemini-video-vision/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-video-vision?tab=2) - **claude-fable-5** — `POST https://api.muapi.ai/api/v1/claude-fable-5` — Claude Fable 5 is the latest flagship model from Anthropic. Supports text and image inputs with advanced reasoning and creative capabilities. Token-based prici… - [Playground](https://muapi.ai/playground/claude-fable-5) · [llms.txt](https://muapi.ai/playground/claude-fable-5/llms.txt) · [API Reference](https://muapi.ai/playground/claude-fable-5?tab=2) - **kimi-k3** — `POST https://api.muapi.ai/api/v1/kimi-k3` — Moonshot Kimi K3 is a flagship 2.8T Mixture-of-Experts (MoE) LLM with a 1M token context window, designed for long-context reasoning, coding, and complex agent… - [Playground](https://muapi.ai/playground/kimi-k3) · [llms.txt](https://muapi.ai/playground/kimi-k3/llms.txt) · [API Reference](https://muapi.ai/playground/kimi-k3?tab=2) - **gpt-5-6-luna** — `POST https://api.muapi.ai/api/v1/gpt-5-6-luna` — GPT 5.6 Luna is OpenAI's fast, cost-effective multimodal reasoning model. Supports mixed text and image inputs, adjustable reasoning effort, and integrated web… - [Playground](https://muapi.ai/playground/gpt-5-6-luna) · [llms.txt](https://muapi.ai/playground/gpt-5-6-luna/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-5-6-luna?tab=2) - **suno-boost-music-style** — `POST https://api.muapi.ai/api/v1/suno-boost-music-style` — Boost style prompts for Suno music generation. - [Playground](https://muapi.ai/playground/suno-boost-music-style) · [llms.txt](https://muapi.ai/playground/suno-boost-music-style/llms.txt) · [API Reference](https://muapi.ai/playground/suno-boost-music-style?tab=2) - **gpt-5-5** — `POST https://api.muapi.ai/api/v1/gpt-5-5` — GPT 5.5 is OpenAI's state-of-the-art flagship reasoning model for high-complexity problems. Supports image and file uploads, system prompts, web search capabil… - [Playground](https://muapi.ai/playground/gpt-5-5) · [llms.txt](https://muapi.ai/playground/gpt-5-5/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-5-5?tab=2) - **gpt-5-6-terra** — `POST https://api.muapi.ai/api/v1/gpt-5-6-terra` — GPT 5.6 Terra is OpenAI's balanced multimodal reasoning model for general business and analytical tasks. Supports mixed text and image inputs, adjustable reaso… - [Playground](https://muapi.ai/playground/gpt-5-6-terra) · [llms.txt](https://muapi.ai/playground/gpt-5-6-terra/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-5-6-terra?tab=2) - **gemini-2-5-pro** — `POST https://api.muapi.ai/api/v1/gemini-2-5-pro` — Gemini 2.5 Pro is Google's advanced multimodal reasoning model, optimized for complex coding, logical tasks, and deep analysis. Supports text and image inputs.… - [Playground](https://muapi.ai/playground/gemini-2-5-pro) · [llms.txt](https://muapi.ai/playground/gemini-2-5-pro/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-2-5-pro?tab=2) - **deepseek-v4-flash** — `POST https://api.muapi.ai/api/v1/deepseek-v4-flash` — DeepSeek V4 Flash is an ultra-fast multimodal reasoning model optimized for low-latency text and image understanding tasks. - [Playground](https://muapi.ai/playground/deepseek-v4-flash) · [llms.txt](https://muapi.ai/playground/deepseek-v4-flash/llms.txt) · [API Reference](https://muapi.ai/playground/deepseek-v4-flash?tab=2) - **grok-4-3** — `POST https://api.muapi.ai/api/v1/grok-4-3` — Grok 4.3 is a highly capable multimodal reasoning model, supporting mixed text/image inputs, adjustable reasoning effort, and integrated web search tools. Toke… - [Playground](https://muapi.ai/playground/grok-4-3) · [llms.txt](https://muapi.ai/playground/grok-4-3/llms.txt) · [API Reference](https://muapi.ai/playground/grok-4-3?tab=2) - **claude-opus-4-6** — `POST https://api.muapi.ai/api/v1/claude-opus-4-6` — Claude Opus 4.6 is Anthropic's most capable model for complex coding, long-context reasoning, and agentic workflows. Supports text and image inputs. Token-base… - [Playground](https://muapi.ai/playground/claude-opus-4-6) · [llms.txt](https://muapi.ai/playground/claude-opus-4-6/llms.txt) · [API Reference](https://muapi.ai/playground/claude-opus-4-6?tab=2) - **suno-generate-lyrics** — `POST https://api.muapi.ai/api/v1/suno-generate-lyrics` — Generate lyrics using Suno. - [Playground](https://muapi.ai/playground/suno-generate-lyrics) · [llms.txt](https://muapi.ai/playground/suno-generate-lyrics/llms.txt) · [API Reference](https://muapi.ai/playground/suno-generate-lyrics?tab=2) - **claude-opus-4-5** — `POST https://api.muapi.ai/api/v1/claude-opus-4-5` — Claude Opus 4.5 is Anthropic's highly capable model for complex coding, long-context reasoning, and agentic workflows. Supports text and image inputs. Token-ba… - [Playground](https://muapi.ai/playground/claude-opus-4-5) · [llms.txt](https://muapi.ai/playground/claude-opus-4-5/llms.txt) · [API Reference](https://muapi.ai/playground/claude-opus-4-5?tab=2) - **gpt-codex** — `POST https://api.muapi.ai/api/v1/gpt-codex` — OpenAI GPT Codex delivers advanced coding capabilities with scalable reasoning depth. Supports multiple model variants (gpt-5-codex through gpt-5.4-codex) and… - [Playground](https://muapi.ai/playground/gpt-codex) · [llms.txt](https://muapi.ai/playground/gpt-codex/llms.txt) · [API Reference](https://muapi.ai/playground/gpt-codex?tab=2) - **claude-opus-4-7** — `POST https://api.muapi.ai/api/v1/claude-opus-4-7` — Claude Opus 4.7 is Anthropic's highly capable model for complex coding, long-context reasoning, and agentic workflows. Supports text and image inputs. Token-ba… - [Playground](https://muapi.ai/playground/claude-opus-4-7) · [llms.txt](https://muapi.ai/playground/claude-opus-4-7/llms.txt) · [API Reference](https://muapi.ai/playground/claude-opus-4-7?tab=2) - **deepseek-v4-pro** — `POST https://api.muapi.ai/api/v1/deepseek-v4-pro` — DeepSeek V4 Pro is an advanced flagship multimodal reasoning model designed for complex coding, mathematical, and multi-step reasoning tasks. - [Playground](https://muapi.ai/playground/deepseek-v4-pro) · [llms.txt](https://muapi.ai/playground/deepseek-v4-pro/llms.txt) · [API Reference](https://muapi.ai/playground/deepseek-v4-pro?tab=2) - **generate-social-video-script** — `POST https://api.muapi.ai/api/v1/generate-social-video-script` — Generate viral short-form video scripts for social media based on a topic and niche. - [Playground](https://muapi.ai/playground/generate-social-video-script) · [llms.txt](https://muapi.ai/playground/generate-social-video-script/llms.txt) · [API Reference](https://muapi.ai/playground/generate-social-video-script?tab=2) - **grok-4-6** — `POST https://api.muapi.ai/api/v1/grok-4-6` — Grok 4.6 is xAI’s next-generation multimodal reasoning model, supporting mixed text/image inputs, adjustable reasoning effort, and integrated web search tools.… - [Playground](https://muapi.ai/playground/grok-4-6) · [llms.txt](https://muapi.ai/playground/grok-4-6/llms.txt) · [API Reference](https://muapi.ai/playground/grok-4-6?tab=2) - **grok-4-7** — `POST https://api.muapi.ai/api/v1/grok-4-7` — Grok 4.7 is xAI’s next-generation multimodal reasoning model, supporting mixed text/image inputs, adjustable reasoning effort, and integrated web search tools.… - [Playground](https://muapi.ai/playground/grok-4-7) · [llms.txt](https://muapi.ai/playground/grok-4-7/llms.txt) · [API Reference](https://muapi.ai/playground/grok-4-7?tab=2) - **moderate-text** — `POST https://api.muapi.ai/api/v1/moderate-text` — Classify any text snippet across OpenAI's standard moderation categories (sexual, hate, harassment, self-harm, violence, and more). Returns a boolean flag plus… - [Playground](https://muapi.ai/playground/moderate-text) · [llms.txt](https://muapi.ai/playground/moderate-text/llms.txt) · [API Reference](https://muapi.ai/playground/moderate-text?tab=2) - **openai-sora-2-pro-characters** — `POST https://api.muapi.ai/api/v1/openai-sora-2-pro-characters` — Create consistent AI characters for your Sora 2 videos. Provide a previous video's task ID and a prompt to define or refine your character. - [Playground](https://muapi.ai/playground/openai-sora-2-pro-characters) · [llms.txt](https://muapi.ai/playground/openai-sora-2-pro-characters/llms.txt) · [API Reference](https://muapi.ai/playground/openai-sora-2-pro-characters?tab=2) ## Other Models - **youtube-download** — `POST https://api.muapi.ai/api/v1/youtube-download` — Download videos from YouTube in your chosen resolution or audio format. - [Playground](https://muapi.ai/playground/youtube-download) · [llms.txt](https://muapi.ai/playground/youtube-download/llms.txt) · [API Reference](https://muapi.ai/playground/youtube-download?tab=2) - **youtube-publish** — `POST https://api.muapi.ai/api/v1/youtube-publish` — Upload and publish a video to a connected YouTube account. - [Playground](https://muapi.ai/playground/youtube-publish) · [llms.txt](https://muapi.ai/playground/youtube-publish/llms.txt) · [API Reference](https://muapi.ai/playground/youtube-publish?tab=2) - **openai-whisper** — `POST https://api.muapi.ai/api/v1/openai-whisper` — Whisper turns spoken audio into accurate written text. Upload an audio file URL and receive a clean transcription, with optional timestamped subtitle output (S… - [Playground](https://muapi.ai/playground/openai-whisper) · [llms.txt](https://muapi.ai/playground/openai-whisper/llms.txt) · [API Reference](https://muapi.ai/playground/openai-whisper?tab=2) - **tiktok-publish** — `POST https://api.muapi.ai/api/v1/tiktok-publish` — Upload and publish a video to a connected TikTok account. - [Playground](https://muapi.ai/playground/tiktok-publish) · [llms.txt](https://muapi.ai/playground/tiktok-publish/llms.txt) · [API Reference](https://muapi.ai/playground/tiktok-publish?tab=2) - **instagram-publish** — `POST https://api.muapi.ai/api/v1/instagram-publish` — Publish a video or image to a connected Instagram Business account. - [Playground](https://muapi.ai/playground/instagram-publish) · [llms.txt](https://muapi.ai/playground/instagram-publish/llms.txt) · [API Reference](https://muapi.ai/playground/instagram-publish?tab=2) - **facebook-publish** — `POST https://api.muapi.ai/api/v1/facebook-publish` — Publish a video or image to a connected Facebook Page. - [Playground](https://muapi.ai/playground/facebook-publish) · [llms.txt](https://muapi.ai/playground/facebook-publish/llms.txt) · [API Reference](https://muapi.ai/playground/facebook-publish?tab=2) - **gemini-omni-audio** — `POST https://api.muapi.ai/api/v1/gemini-omni-audio` — Create a named voice profile with custom timbre, style, and emotion. The returned voice ID can be used in Gemini Omni video generation to assign a consistent v… - [Playground](https://muapi.ai/playground/gemini-omni-audio) · [llms.txt](https://muapi.ai/playground/gemini-omni-audio/llms.txt) · [API Reference](https://muapi.ai/playground/gemini-omni-audio?tab=2) - **instagram-fetch-reels** — `POST https://api.muapi.ai/api/v1/instagram-fetch-reels` — Fetch the latest Reels metadata and metrics for an Instagram creator. - [Playground](https://muapi.ai/playground/instagram-fetch-reels) · [llms.txt](https://muapi.ai/playground/instagram-fetch-reels/llms.txt) · [API Reference](https://muapi.ai/playground/instagram-fetch-reels?tab=2) - **linkedin-publish** — `POST https://api.muapi.ai/api/v1/linkedin-publish` — Publish a video or image to a connected LinkedIn profile or page. - [Playground](https://muapi.ai/playground/linkedin-publish) · [llms.txt](https://muapi.ai/playground/linkedin-publish/llms.txt) · [API Reference](https://muapi.ai/playground/linkedin-publish?tab=2) - **ocr-recognize-text** — `POST https://api.muapi.ai/api/v1/ocr-recognize-text` — Detect and extract text fragments and their positions from an image using local OCR. - [Playground](https://muapi.ai/playground/ocr-recognize-text) · [llms.txt](https://muapi.ai/playground/ocr-recognize-text/llms.txt) · [API Reference](https://muapi.ai/playground/ocr-recognize-text?tab=2) - **x-publish** — `POST https://api.muapi.ai/api/v1/x-publish` — Post a video or image to a connected X (Twitter) account. - [Playground](https://muapi.ai/playground/x-publish) · [llms.txt](https://muapi.ai/playground/x-publish/llms.txt) · [API Reference](https://muapi.ai/playground/x-publish?tab=2) - **tiktok-fetch-videos** — `POST https://api.muapi.ai/api/v1/tiktok-fetch-videos` — Fetch the latest video posts and view metrics for a TikTok creator. - [Playground](https://muapi.ai/playground/tiktok-fetch-videos) · [llms.txt](https://muapi.ai/playground/tiktok-fetch-videos/llms.txt) · [API Reference](https://muapi.ai/playground/tiktok-fetch-videos?tab=2) - **youtube-fetch-shorts** — `POST https://api.muapi.ai/api/v1/youtube-fetch-shorts` — Fetch the latest Shorts from a YouTube channel by ID. - [Playground](https://muapi.ai/playground/youtube-fetch-shorts) · [llms.txt](https://muapi.ai/playground/youtube-fetch-shorts/llms.txt) · [API Reference](https://muapi.ai/playground/youtube-fetch-shorts?tab=2) - **youtube-set-thumbnail** — `POST https://api.muapi.ai/api/v1/youtube-set-thumbnail` — Set or replace the thumbnail image of a video on a connected YouTube account. - [Playground](https://muapi.ai/playground/youtube-set-thumbnail) · [llms.txt](https://muapi.ai/playground/youtube-set-thumbnail/llms.txt) · [API Reference](https://muapi.ai/playground/youtube-set-thumbnail?tab=2) - **facebook-fetch-reels** — `POST https://api.muapi.ai/api/v1/facebook-fetch-reels` — Fetch the latest Reels metadata and metrics for a Facebook page. - [Playground](https://muapi.ai/playground/facebook-fetch-reels) · [llms.txt](https://muapi.ai/playground/facebook-fetch-reels/llms.txt) · [API Reference](https://muapi.ai/playground/facebook-fetch-reels?tab=2) - **threads-publish** — `POST https://api.muapi.ai/api/v1/threads-publish` — Publish a video or image to a connected Threads account. - [Playground](https://muapi.ai/playground/threads-publish) · [llms.txt](https://muapi.ai/playground/threads-publish/llms.txt) · [API Reference](https://muapi.ai/playground/threads-publish?tab=2) - **twitter-fetch-posts** — `POST https://api.muapi.ai/api/v1/twitter-fetch-posts` — Fetch the latest posts and performance metrics for a Twitter/X user. - [Playground](https://muapi.ai/playground/twitter-fetch-posts) · [llms.txt](https://muapi.ai/playground/twitter-fetch-posts/llms.txt) · [API Reference](https://muapi.ai/playground/twitter-fetch-posts?tab=2) - **pinterest-publish** — `POST https://api.muapi.ai/api/v1/pinterest-publish` — Publish a video or image Pin to a connected Pinterest board. - [Playground](https://muapi.ai/playground/pinterest-publish) · [llms.txt](https://muapi.ai/playground/pinterest-publish/llms.txt) · [API Reference](https://muapi.ai/playground/pinterest-publish?tab=2) - **tiktok-fetch-profile** — `POST https://api.muapi.ai/api/v1/tiktok-fetch-profile` — Retrieve profile details, stats, and metadata for a TikTok user. - [Playground](https://muapi.ai/playground/tiktok-fetch-profile) · [llms.txt](https://muapi.ai/playground/tiktok-fetch-profile/llms.txt) · [API Reference](https://muapi.ai/playground/tiktok-fetch-profile?tab=2) - **moderate-video** — `POST https://api.muapi.ai/api/v1/moderate-video` — Scan a video for unsafe or policy-violating content. Supports MP4, MOV, and WebM URLs and returns structured safety classifications across harassment, hate, se… - [Playground](https://muapi.ai/playground/moderate-video) · [llms.txt](https://muapi.ai/playground/moderate-video/llms.txt) · [API Reference](https://muapi.ai/playground/moderate-video?tab=2) - **youtube-update-metadata** — `POST https://api.muapi.ai/api/v1/youtube-update-metadata` — Update the title, description, tags, category, privacy, or made-for-kids status of a video on a connected YouTube account. - [Playground](https://muapi.ai/playground/youtube-update-metadata) · [llms.txt](https://muapi.ai/playground/youtube-update-metadata/llms.txt) · [API Reference](https://muapi.ai/playground/youtube-update-metadata?tab=2) - **moderate-image** — `POST https://api.muapi.ai/api/v1/moderate-image` — Detect unsafe or policy-violating content in any image. Supply an image URL (and optional context text) and receive structured flags for adult, violent, hatefu… - [Playground](https://muapi.ai/playground/moderate-image) · [llms.txt](https://muapi.ai/playground/moderate-image/llms.txt) · [API Reference](https://muapi.ai/playground/moderate-image?tab=2) ## Account - [Sign In](https://muapi.ai/login) - [Sign Up](https://muapi.ai/signup) - [Dashboard](https://muapi.ai/dashboard): Usage, billing, and request logs. - [Access Keys](https://muapi.ai/access-keys): Create and manage `x-api-key` credentials. - [Top Up](https://muapi.ai/topup): Buy credits via Stripe. - [Pricing & Plans](https://muapi.ai/pricing): Free, Pro, and Enterprise plans with concurrency limits. - [Teams](https://muapi.ai/teams): Multi-user team workspaces with shared billing. - [Profile](https://muapi.ai/profile) ## Resources - [Homepage](https://muapi.ai) - [Blog](https://muapi.ai/blog) - [Models Index](https://muapi.ai/models) - [Open Generative AI](https://muapi.ai/open-generative-ai) - [Support](https://muapi.ai/support) ## Optional - [Terms of Service](https://muapi.ai/terms) - [Privacy Policy](https://muapi.ai/privacy) - [Refund Policy](https://muapi.ai/refund-policy)