MiniMax Music 3.0 — Vocal Song
Generate a full song with vocals from a prompt and structured lyrics. Newlines separate lines, double newlines add pauses, and ## marks instrumental accompaniment.
MiniMax Music 3.0 is a text-to-music model that generates a full song with vocals from a prompt and structured lyrics, or an instrumental-only track. Configurable bitrate up to 256kbps and sample rate up to 44.1kHz give you control over final audio quality. Access it through one Muapi REST API at $0.20 per song—no subscription and no waitlist.
Generate a full song with vocals from a prompt and structured lyrics. Newlines separate lines, double newlines add pauses, and ## marks instrumental accompaniment.
Generate the same arrangement without vocals—a clean instrumental bed driven by your prompt and lyric structure.
MiniMax Music 3.0 is a text-to-music generation model that produces complete songs—vocals, instrumentation, and structure—from a short prompt describing style and mood, combined with lyrics you supply. It also supports an instrumental-only mode for background music, intros, and score work where vocals are not wanted.
Muapi exposes the MiniMax Music 3.0 API through the same unified REST pattern used across all Muapi models. One API key, one endpoint format, pay-as-you-go at $0.20/song: submit a generation request with your prompt and lyrics, poll for completion, and download the finished audio file.
Generate complete songs with sung vocals directly from a text prompt and lyrics; verse/chorus structure, pauses, and accompaniment markers are supported in the lyrics input.
Set is_instrumental to true to generate the same arrangement without vocals—ideal for background tracks, underscore, or intro/outro music.
Lyrics support up to 3000 characters. Single newlines separate lines, double newlines insert a pause, and ## marks a section to layer in instrumental accompaniment.
Choose from five bitrate options (60kbps–256kbps) and four sample rates (16kHz–44.1kHz) to match your delivery pipeline.
| Parameter | Type | Required | Notes |
|---|---|---|---|
| prompt | string | Yes | Text description of the music style, mood, and instrumentation. |
| lyrics | string | Yes | 10–3000 characters. \n separates lines, \n\n adds a pause, and ## adds accompaniment. |
| bitrate | integer | No | 60000 · 32000 · 64000 · 128000 · 256000 (default 256000). |
| sample_rate | integer | No | 16000 · 24000 · 32000 · 44100 (default 44100). |
| is_instrumental | boolean | No | true generates instrumental-only output (default false). |
Submit a prompt and structured lyrics, receive a request ID, and poll the standard prediction result endpoint for the finished song or instrumental.
curl -X POST https://api.muapi.ai/api/v1/minimax-music-3.0 \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt":"An upbeat synth-pop anthem with driving drums","lyrics":"[Verse]\nWalking through the city lights\n\n##\n[Chorus]\nWe are shining, we are free","is_instrumental":false}'
# Response: {"request_id":"REQUEST_ID"}Set is_instrumental to false for a vocal song or true for an instrumental-only arrangement.
curl https://api.muapi.ai/api/v1/predictions/REQUEST_ID/result \ -H "x-api-key: YOUR_API_KEY" # Read the generated song or instrumental URL from the completed response.
Poll until the task completes, then read the generated audio URL from the response.
MiniMax Music 3.0 is an AI music generation model that turns a text prompt and lyrics into a full song with vocals, or an instrumental-only track. It is available via REST API on Muapi.
Lyrics are plain text, 10–3000 characters. A single newline separates lyric lines, a double newline adds a pause, and ## marks a section to add instrumental accompaniment.
Yes. Set is_instrumental to true to generate a vocal-free instrumental track using the same prompt and lyric structure.
Bitrate can be set to 60000, 32000, 64000, 128000, or 256000 (default 256000), and sample rate to 16000, 24000, 32000, or 44100 Hz (default 44100).
MiniMax Music 3.0 on Muapi is priced at $0.20 per generated song, pay-as-you-go with no subscription required.
Yes. Sign up at muapi.ai, create an API key from your dashboard, and start generating immediately—no waitlist required.
Create one Muapi API key and generate vocal songs or instrumental tracks through the same asynchronous integration.