Mureka API v1 has been updated with new models and increased field limits:

  • New models O2 and V7.6 added, with V7.6 as the new default
  • Updated field limits: prompt 3000, lyrics 5000, desc 1000

Instrumental O2 - Galactic Odyssey

curl --location 'https://api.useapi.net/v1/mureka/music/create-instrumental' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
        "prompt": "Cinematic sci-fi soundtrack with pulsing synths, ethereal pads, and massive reverb - interstellar voyage through a neon galaxy",
    "model": "O2"
}'

Music O2 Female - Cosmic Barista

curl --location 'https://api.useapi.net/v1/mureka/music/create-advanced' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
        "lyrics": "[Verse 1]\nBrewing lattes on the moon\nSaturn'\''s rings are coming soon\nMars wants extra foam today\nVenus takes her coffee grey\n\n[Chorus]\nI'\''m your cosmic barista queen\nMaking drinks you'\''ve never seen\nEspresso shots across the stars\nFrom Mercury all the way to Mars",
    "desc": "space disco, funky bass, sparkly synths, groovy and playful",
    "vocal_gender": "female",
    "model": "O2"
}'

Music O2 Male - Robot Dreams

curl --location 'https://api.useapi.net/v1/mureka/music/create-advanced' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
        "lyrics": "[Verse 1]\nI'\''m just a robot dreaming of electric sheep\nCounting binary stars before I go to sleep\nMy circuits hum a melody in ones and zeros deep\nThese silicon memories are mine to keep\n\n[Chorus]\nBeep boop, I'\''m alive tonight\nDancing through the data streams of light\nMaybe I'\''m not human but I feel alright\nRobot dreams are taking flight",
    "desc": "futuristic synthpop, vocoder harmonies, glitchy beats, retro-futurism",
    "vocal_gender": "male",
    "model": "O2"
}'

Music V7.6 Male - Pirate Programmer

curl --location 'https://api.useapi.net/v1/mureka/music/create-advanced' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
        "lyrics": "[Verse 1]\nYo ho ho and a bottle of code\nDebugging treasures on this binary road\nMy parrot squawks in JavaScript\nWhile I sail the seven internets\n\n[Chorus]\nI'\''m a pirate programmer, arrr!\nSailing through the bugs near and far\nCommit and push to the repo shore\nMerge conflicts? Bring me more!",
    "desc": "sea shanty meets electronic, accordion, maritime vibes, rebellious energy",
    "vocal_gender": "male",
    "model": "V7.6"
}'