Skip to main content

Create Audio Lyrics Generation Task

POST 

/api/v1/lyrics

Create a new audio lyrics generation task, which can generate lyrics content based on the prompt.

Important Notes

  1. Generated lyrics are retained for 15 days
  2. Callback has only one stage: complete (generation complete)
  3. Each generation will return multiple lyrics versions for selection

Request

Responses

Request successful

Callbacks

POST 

{$request.body#/callBackUrl}

System will call this callback when lyrics generation is complete.

Callback Example

{
"code": 200,
"msg": "All generated successfully.",
"data": {
"callbackType": "complete",
"taskId": "11dc****8b0f",
"lyricsData": [
{
"text": "[Verse]\n我穿越城市黑暗夜\n心中燃烧梦想的烈火",
"title": "钢铁侠",
"status": "complete",
"errorMessage": ""
},
{
"text": "[Verse]\n风在呼唤我名字\n钢铁盔甲闪得刺眼",
"title": "钢铁侠",
"status": "complete",
"errorMessage": ""
}
]
}
}

Callbacks Responses

Callback received successfully