Song API Task Creation Examples(Suno and Udio)
music-u
and music-s
models.Music-u (Udio API)
music-u
model supports only the generate_music
task. Below are the task examples for different use cases:Request Body Example of Udio Simple Prompt
{
"model": "music-u",
"task_type": "generate_music",
"input": {
"gpt_description_prompt": "night breeze, piano",
"negative_tags": "",
"lyrics_type": "generate",
"seed": -1
},
"config": {
"service_mode": "public",
"webhook_config": {
"endpoint": "",
"secret": ""
}
}
}
Request Body Example of Udio Instrumental
{
"model": "music-u",
"task_type": "generate_music",
"input": {
"gpt_description_prompt": "night breeze",
"negative_tags": "",
"lyrics_type": "instrumental",
"seed": -1
},
"config": {
"service_mode": "public",
"webhook_config": {
"endpoint": "",
"secret": ""
}
}
}
Request Body Example of Udio Full Lyrics
{
"model": "music-u",
"task_type": "generate_music",
"input": {
"prompt": "[Verse]\nIn the gentle evening air,\nWhispers dance without a care.\nStars ignite our dreams above,\nWrapped in warmth, we find our love.\n[Chorus]\n",
"negative_tags": "",
"lyrics_type": "user",
"seed": -1
},
"config": {
"service_mode": "public",
"webhook_config": {
"endpoint": "",
"secret": ""
}
}
}
Music-s (Suno)
Music-s
model is in testing phase thus it has following restrictions:v4
is supported.Request Body Example of Description Mode
{
"model": "music-s",
"task_type": "generate_music",
"input": {
"gpt_description_prompt": "night breeze",
"make_instrumental": false
},
"config": {
"service_mode": "public",
"webhook_config": {
"endpoint": "",
"secret": ""
}
}
}
Request Body Example of Custom Mode
{
"model": "music-s",
"task_type": "generate_music_custom",
"input": {
"title": "night breeze",
"prompt": "[Verse]\nIn the gentle evening air,\nWhispers dance without a care.\nStars ignite our dreams above,\nWrapped in warmth, we find our love.\n[Chorus]\n",
"tags": "exotica, cello",
"negative_tags": ""
},
"config": {
"service_mode": "public",
"webhook_config": {
"endpoint": "",
"secret": ""
}
}
}
Modified at 2025-02-19 09:24:13