Muapi's AI music API covers the full workflow from lyrics and style to finished songs, vocals, instrumentals, sound effects, and audio conversion. Use one REST integration to switch between MiniMax, Suno, and focused utilities as each track requires.
Generate a complete song with vocals from a prompt and optional lyrics.
Create a full track from a text description of genre, mood, arrangement, and performance.
Combine up to five source tracks into a new mashup with a controlled musical direction.
Transform an existing track with a new prompt while retaining the source's musical identity.
Continue a song past its original ending with a musically coherent extension.
Add a vocal performance to an instrumental source using lyrics or a vocal direction.
Build an instrumental arrangement around an acapella vocal source.
Create a short voice-clone preview for vocal prototyping and character performance tests.
Generate structured lyrics before sending them to a full-song or vocal endpoint.
Turn a rough music direction into a clearer style brief for downstream generation.
Generate short sound effects and audio elements to complete a music or video project.
Convert a generated or uploaded audio asset into a production-friendly WAV file.
An AI music API lets an application create or transform music from text prompts, lyrics, audio references, or voice samples. A single catalog can cover finished songs, instrumentals, vocals, lyrics, sound effects, and small audio utilities instead of forcing a separate integration for every stage.
Muapi exposes MiniMax Music and Suno capabilities through a consistent REST request flow. Choose the endpoint by the job: create a song, extend or remix a track, add a vocal or instrumental layer, prepare lyrics, or generate supporting sound.
Generate complete songs from a prompt, with optional lyrics, genre, mood, arrangement, and performance direction.
Add vocals to an instrumental or create an instrumental arrangement around an acapella source.
Remix an existing track, extend its ending, or combine several source tracks into a new musical result.
Generate lyrics and refine a rough style brief before passing the result to a song-generation endpoint.
Prototype voice clones and generate short sound effects for music, video, games, and social content.
Use low-cost utility endpoints for iteration and pay for premium full-song generation only when you need the finished track.
| Model | Provider | Price | Best For |
|---|---|---|---|
| MiniMax Music 3.0 | MiniMax | $0.20/song | Prompted songs with vocals |
| MiniMax Music 3.0 Instrumental | MiniMax | $0.20/song | Instrumental song generation |
| Suno Create | Suno | $0.10/request | Full text-to-song creation |
| Suno Mashup | Suno | $0.09/request | Combining multiple source tracks |
| Suno Remix | Suno | $0.09/request | Prompt-directed transformations |
| Suno Extend | Suno | $0.09/request | Continuing an existing track |
| Suno Add Vocals | Suno | $0.09/request | Adding vocals to instrumentals |
| Suno Add Instrumental | Suno | $0.09/request | Arranging around acapella |
| Suno Voice Clone | Suno | Free preview (10 sec) | Short voice prototypes |
| Suno Generate Lyrics | Suno | $0.003/request | Lyrics drafting |
| Suno Boost Style | Suno | $0.003/request | Improving music briefs |
| Suno Sounds | Suno | $0.02/request | Short sound effects |
| Suno Convert WAV | Suno | $0.01/request | Production audio conversion |
Prices and supported audio fields vary by model. Check the Playground schema and rights terms before using generated music in production.
curl -X POST https://api.muapi.ai/api/v1/minimax-music-3.0 \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"prompt": "upbeat synth-pop, driving bassline, female vocals",
"lyrics": "##\nWalking through the neon light\nEverything feels right tonight"
}'import requests
response = requests.post(
"https://api.muapi.ai/api/v1/minimax-music-3.0",
headers={"x-api-key": "YOUR_API_KEY"},
json={
"prompt": "upbeat synth-pop, driving bassline, female vocals",
"lyrics": "##\nWalking through the neon light\nEverything feels right tonight",
},
)
request_id = response.json()["request_id"]
result = requests.get(
f"https://api.muapi.ai/api/v1/predictions/{request_id}/result",
headers={"x-api-key": "YOUR_API_KEY"},
)
print(result.json())Yes. Suno Create and MiniMax Music 3.0 accept a text direction for full-song generation, with lyrics support where the model schema allows it.
Yes. Use the instrumental mode supported by MiniMax Music 3.0 or Suno Add Instrumental when you have an acapella source.
Yes. Suno Remix, Suno Extend, and Suno Mashup accept audio inputs for different transformation workflows.
Yes. Suno Generate Lyrics handles lyric drafts, while Suno Sounds creates short sound effects from a prompt.
Utility endpoints start around $0.003 per request, while representative full-song endpoints cost $0.10–$0.20 per song.
Yes. Muapi uses one API key and a consistent submit-and-poll flow across the music catalog. Review model-specific usage and rights terms for your release.