Models/AI Music API

AI Music API Indonesia | MuAPI

Live12 unique music tools, one API key

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.

12 of 12 representative tools
MiniMaxFull Song

MiniMax Music 3.0

Generate a complete song with vocals from a prompt and optional lyrics.

Prompt and lyrics in, song out
$0.20/song
Try Model
SunoFull Song

Suno Create

Create a full track from a text description of genre, mood, arrangement, and performance.

Text prompt in, song out
$0.10/request
Try Model
SunoRemix

Suno Mashup

Combine up to five source tracks into a new mashup with a controlled musical direction.

1–5 tracks in, mashup out
$0.09/request
Try Model
SunoRemix

Suno Remix

Transform an existing track with a new prompt while retaining the source's musical identity.

Audio and prompt in, remix out
$0.09/request
Try Model
SunoExtend

Suno Extend

Continue a song past its original ending with a musically coherent extension.

Audio in, extended song out
$0.09/request
Try Model
SunoVocals

Suno Add Vocals

Add a vocal performance to an instrumental source using lyrics or a vocal direction.

Instrumental in, vocal track out
$0.09/request
Try Model
SunoInstrumental

Suno Add Instrumental

Build an instrumental arrangement around an acapella vocal source.

Acapella in, instrumental track out
$0.09/request
Try Model
SunoVoice

Suno Voice Clone

Create a short voice-clone preview for vocal prototyping and character performance tests.

Voice sample in, cloned voice out
Free preview (10 sec)
Try Model
SunoLyrics

Suno Generate Lyrics

Generate structured lyrics before sending them to a full-song or vocal endpoint.

Theme or prompt in, lyrics out
$0.003/request
Try Model
SunoStyle

Suno Boost Style

Turn a rough music direction into a clearer style brief for downstream generation.

Style prompt in, enhanced style out
$0.003/request
Try Model
SunoSound Effects

Suno Sounds

Generate short sound effects and audio elements to complete a music or video project.

Sound prompt in, audio out
$0.02/request
Try Model
SunoUtility

Suno Convert WAV

Convert a generated or uploaded audio asset into a production-friendly WAV file.

Audio in, WAV out
$0.01/request
Try Model

What Is an AI Music API?

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.

Key Capabilities

Full Song Generation

Generate complete songs from a prompt, with optional lyrics, genre, mood, arrangement, and performance direction.

Vocals and Instrumentals

Add vocals to an instrumental or create an instrumental arrangement around an acapella source.

Remix and Extend

Remix an existing track, extend its ending, or combine several source tracks into a new musical result.

Lyrics and Style Tools

Generate lyrics and refine a rough style brief before passing the result to a song-generation endpoint.

Voice and Sound Effects

Prototype voice clones and generate short sound effects for music, video, games, and social content.

Pay Per Request

Use low-cost utility endpoints for iteration and pay for premium full-song generation only when you need the finished track.

Representative AI Music Model Comparison

ModelProviderPriceBest For
MiniMax Music 3.0MiniMax$0.20/songPrompted songs with vocals
MiniMax Music 3.0 InstrumentalMiniMax$0.20/songInstrumental song generation
Suno CreateSuno$0.10/requestFull text-to-song creation
Suno MashupSuno$0.09/requestCombining multiple source tracks
Suno RemixSuno$0.09/requestPrompt-directed transformations
Suno ExtendSuno$0.09/requestContinuing an existing track
Suno Add VocalsSuno$0.09/requestAdding vocals to instrumentals
Suno Add InstrumentalSuno$0.09/requestArranging around acapella
Suno Voice CloneSunoFree preview (10 sec)Short voice prototypes
Suno Generate LyricsSuno$0.003/requestLyrics drafting
Suno Boost StyleSuno$0.003/requestImproving music briefs
Suno SoundsSuno$0.02/requestShort sound effects
Suno Convert WAVSuno$0.01/requestProduction audio conversion

Prices and supported audio fields vary by model. Check the Playground schema and rights terms before using generated music in production.

How to Call the AI Music API

  1. Choose the music job. Pick a full-song, vocal, instrumental, remix, lyric, style, sound, voice, or conversion endpoint.
  2. Host audio inputs when needed. Upload source tracks, acapellas, or voice samples through POST /api/v1/upload_file, or use publicly reachable URLs.
  3. Submit the request. Call POST /api/v1/{model-slug} with a prompt, lyrics, source audio, or model-specific options.
  4. Poll and store the result. Check GET /api/v1/predictions/{request_id}/result until status is completed, then download the returned audio.
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())

Frequently Asked Questions

Can I generate a complete song from text?

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.

Can I generate instrumental music only?

Yes. Use the instrumental mode supported by MiniMax Music 3.0 or Suno Add Instrumental when you have an acapella source.

Can I remix or extend an existing track?

Yes. Suno Remix, Suno Extend, and Suno Mashup accept audio inputs for different transformation workflows.

Can the API generate lyrics and sound effects?

Yes. Suno Generate Lyrics handles lyric drafts, while Suno Sounds creates short sound effects from a prompt.

How much does AI music generation cost?

Utility endpoints start around $0.003 per request, while representative full-song endpoints cost $0.10–$0.20 per song.

Can I use one API key for every music tool?

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.