Skip to content
Docs menu

Audio models

Suno V4.5 Plus

On this page

Full songs with vocals from a text prompt.

modelIdsuno-v4-5
Modalitymusic
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationEndpointDescription
Text to audioPOST /api/v1/generateBase generation from a text prompt.
Poll taskGET /api/v1/task/{id}?model=suno-v4-5Retrieve state and result URLs.

Input parameters

FieldTypeRequiredValues / example
modelVersionselectrequiredV5, V4_5PLUS, V4_5, V4
customModeselectoptionalfalse, true
prompttextarearequiredDescribe the style of music and the topic you want.
titletextrequiredEnter a title
styletextarearequiredEnter style of music
personaIdtextoptionalEnter persona ID
instrumentalselectoptionalfalse, true
audioWeightnumberoptional
vocalGenderselectoptional, m, f
styleWeightnumberoptional
weirdnessConstraintnumberoptional
negativeTagstextoptionalStyles to avoid, comma-separated

Example request

bash
curl -X POST https://you.bot/api/v1/generate \
  -H "Authorization: Bearer $YOUBOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"modelId":"suno-v4-5","input":{"modelVersion":"V4_5PLUS","customMode":"false","prompt":"…","title":"…","style":"…","personaId":"…","instrumental":"false","audioWeight":0.65,"vocalGender":"","styleWeight":8,"weirdnessConstraint":8,"negativeTags":"…"}}'