Music Generation on PixVerse with MiniMax, ElevenLabs and Lyria 3 Pro

June 24, 2026

The PixVerse API v2 now generates music. POST /music/create turns a text prompt into a full track across three models β€” music-2.6 (MiniMax, default), music-v1 (ElevenLabs), and lyria-3-pro-preview (Google Lyria 3 Pro) β€” then you poll GET /music/audio_id for the .mp3, or pass a replyUrl callback.

Set instrumental: true for no vocals, pass your own lyrics to have them sung, or send just a prompt and the model writes the lyrics. Each section below runs the same request on all three models so you can compare them.

On a Premium plan ($60/month), a full track costs about $0.08 (lyria-3-pro-preview), $0.16 (music-2.6), or $0.60 (music-v1) β€” at the time of writing, and not accounting for any PixVerse promotions or special pricing.

Instrumental

Set instrumental: true for a track with no vocals. The same prompt on each model:

curl β€” POST /music/create
curl --location 'https://api.useapi.net/v2/pixverse/music/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'email="[email protected]"' \
--form 'model="music-2.6"' \
--form 'instrumental="true"' \
--form 'prompt="A warm, melodic electronic instrumental with dreamy analog synths, a smooth rolling bassline and a catchy lead melody, relaxed and polished with a light steady groove"'

music-2.6

music-v1

lyria-3-pro-preview

Vocals from your own lyrics

Pass lyrics and the model sings them β€” the prompt sets the style, the lyrics set the words. Supported by music-2.6 and music-v1 (lyria-3-pro-preview writes its own lyrics, it does not take custom ones).

curl β€” POST /music/create
curl --location 'https://api.useapi.net/v2/pixverse/music/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'email="[email protected]"' \
--form 'model="music-2.6"' \
--form 'prompt="An upbeat synthwave anthem with a clear, catchy female vocal, driving bassline and shimmering retro arps, around 120 BPM"' \
--form 'lyrics="[Verse 1]
Two AM and the fridge light'\''s humming
One last slice, I can hear it coming
[Chorus]
It'\''s the last slice, baby, it'\''s mine tonight
Neon cheese under kitchen light"'

music-2.6

music-v1

Vocals written by the model

Send just a prompt β€” no instrumental, no lyrics β€” and the model writes the lyrics and sings them.

curl β€” POST /music/create
curl --location 'https://api.useapi.net/v2/pixverse/music/create' \
--header 'Authorization: Bearer user:12345-…' \
--form 'email="[email protected]"' \
--form 'model="music-2.6"' \
--form 'prompt="An upbeat synthwave anthem with a clear, catchy female vocal, driving bassline and shimmering retro arps, around 120 BPM"'

music-2.6

music-v1

lyria-3-pro-preview

Looking for more from Lyria 3 Pro? Flow Music runs the same model at a lower price with many more features β€” cover and restyle, lyrics-adjust remix, extend and replace, and audio effects.

See POST /music/create for the full model matrix, per-model prompt and lyrics limits, credits, and Lyria’s reference-image support.