Seedance 2.0 15% छूट | Video Generator में बनाएँ →

Music V1.5

minimax /

MiniMax Music v1.5 turns text prompts into high-quality, diverse music (Text-to-Audio) using advanced AI for versatile tracks. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

text-to-audio
Input
If set to true, the function will wait for the result to be generated and uploaded before returning the response. It allows you to get the result directly in the response. This property is only available through the API.

Idle

$0.03per run·~33 / $1

ExamplesView all

[verse]Radio static, hadn't smiled in a while. A forgotten song came on, and blew away my care.[chorus]That one song changed it all. The hope a simple melody can bring. Lifts you up and makes you strong, three minutes where you belong.

[verse]The bourbon burns, a trail of fire. Each sip, a memory of desire. The neon hums a low, sad tune beneath this cold, uncaring moon.[chorus]Oh, these barroom blues, a heavy chain. Each link forged in your pouring rain. The smoky haze can't hide my pain, just your ghost whispering my name.

[verse]The clock on the wall stands still. Time's a poison I'm forced to spill. Every shadow dances with grace, just to mock the sorrow on my face.[chorus]Oh, these barroom blues, a lonely ache for a love that was a mistake. The fading afternoon light plays the final verse of our sad tune.

[verse]The smell of stale beer and regret, a tangled web I can't forget. The old piano's missing a key, just like the missing part of me.[chorus]Oh, these barroom blues, a swirling storm, trying to keep my shattered pieces warm. Every song's a nail in the coffin lid for the love I foolishly hid.

[verse]Bass is kicking, lights are low. Got my friends here, ready to go. Feel the energy in the air tonight, everything is shining so bright.[chorus]Oh, we're dancing 'til the sun comes up. Pour the good times in my cup. Worries fade and disappear, 'cause the best night of the year is here.

[verse]Woke up this morning, felt the call. To leave the concrete, stand up tall. With a backpack and a faded map, I won't ever look back.[chorus]Oh, the mountains sing a song for me. Underneath the canopy. Every river bend and soaring hawk shows me how to really talk, to really be.

[verse]No alarm clock, sun is high. Just watching all the clouds drift by. The coffee's brewing, slow and sweet. Got no plans and no one to meet.[chorus]Oh, this quiet and this easy pace, a simple smile upon my face. The world can rush, the world can spin. But today I'm just soaking it all in.

Related Models

README

MiniMax Music v1.5 — AI Music & Lyric Generator

minimax/music-v1.5 is an end-to-end music generator that creates catchy songs from short style cues and structured lyrics. Provide a lyrics_prompt for mood/genre guidance and a prompt with sectioned lyrics, and the model returns a complete track with vocals and instrumental backing.

What It Does

  • Genre & mood control via lyrics_prompt (e.g., "pop, upbeat, inspirational, feel-good").
  • Structured songwriting from your prompt using labeled sections like [verse], [chorus], [bridge].
  • Full mix output with lead vocal + accompaniment rendered as a single track.

Parameters

ParameterRequiredDescription
lyrics_promptYesShort style tags and mood descriptors.
promptYesYour lyrics with explicit section markers (max 600 characters).

lyrics_prompt Examples

  • pop, upbeat, summer vibes
  • indie folk, intimate, acoustic
  • EDM, energetic, festival drop

Supported Section Tags

[intro], [verse], [pre-chorus], [chorus], [post-chorus], [bridge], [outro], [build]

Format Example

[verse] Radio static, hadn't smiled in a while. A forgotten song came on, and blew away my care.

[chorus] That one song changed it all. The hope a simple melody can bring. Lifts you up and makes you strong, three minutes where you belong.

How to Use

  1. Set lyrics_prompt — list genre, tempo/energy, mood (comma-separated).
  2. Compose prompt — paste your lyrics using section tags (up to 600 characters).
  3. Keep sections short (2–4 lines) for cleaner phrasing and hooks.
  4. Click Run — receive a mixed audio track ready to preview and download.

Best Use Cases

  • Original Music Creation — Generate complete songs for personal projects or demos.
  • Content Creators — Create custom background music and jingles for videos.
  • Songwriting Inspiration — Explore melodies and arrangements for your lyrics.
  • Marketing & Advertising — Produce catchy tunes for campaigns and ads.
  • Learning & Experimentation — Explore different genres and song structures.

Pricing

OutputPrice
Per song$0.03

Ready-to-Copy Templates

Pop / Feel-Good

lyrics_prompt: pop, upbeat, catchy, summer, feel-good

prompt: [intro] Sun on my face, wheels on the road. [verse] Left all my worries in the rearview mirror, chasing the light as the skyline gets nearer. [pre-chorus] Heart on the beat, road under my feet. [chorus] We're wide awake tonight—sing it out, lights are in our eyes. Every mile feels right—turn it up, let the world go by.

Indie Folk / Intimate

lyrics_prompt: indie folk, acoustic, warm, reflective

prompt: [verse] Coffee steam and open windows, morning writes across the floor. [chorus] If home is where the quiet grows, I'll find it in your voice once more.

EDM / Festival

lyrics_prompt: EDM, energetic, anthemic, festival drop

prompt: [verse] Hands up, heartbeat running wild, neon rivers in the night. [build] Count it down—4, 3, 2— [chorus] We break like thunder, we're lightning undercover; let the sky remember our names tonight!

Notes

  • Avoid overly long paragraphs; 2–4 lines per section yields cleaner melodies.
  • If an error occurs, simplify the prompt (fewer tags, clearer mood) and try again.
  • Ensure the prompt length has at most 600 characters.
Accessibility:This website uses AI models provided by third parties.

Music v1.5 API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/minimax/music-v1.5 with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Music v1.5 below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/minimax/music-v1.5" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "lyrics_prompt": "blues, melancholic, raw, lonely bar, heartbreak.",
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "enable_sync_mode": false
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("minimax/music-v1.5", {
        "lyrics_prompt": "blues, melancholic, raw, lonely bar, heartbreak.",
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "enable_sync_mode": false
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "minimax/music-v1.5",
    {
    "lyrics_prompt": "blues, melancholic, raw, lonely bar, heartbreak.",
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "enable_sync_mode": false
}
)

print(output["outputs"][0])  # → URL of the generated output

Music v1.5 API — Frequently asked questions

What is the Music v1.5 API?

Music v1.5 is a MiniMax model for audio generation, exposed as a REST API on WaveSpeedAI. MiniMax Music v1.5 turns text prompts into high-quality, diverse music (Text-to-Audio) using advanced AI for versatile tracks. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Music v1.5 API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/minimax/minimax-music-v1.5.

How much does Music v1.5 cost per run?

Music v1.5 starts at $0.030 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Music v1.5 accept?

Key inputs: `prompt`, `enable_sync_mode`, `lyrics_prompt`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/minimax/minimax-music-v1.5.

How long does Music v1.5 take to generate?

Average end-to-end generation time on WaveSpeedAI is around 39 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.

Can I use Music v1.5 outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (MiniMax). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.