Extend Lyrics
Request Information
POST
/api/v1/music?action=lyrics_extendRequest Example
bash
curl -X POST "[HOST]/api/v1/music?action=lyrics_extend" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"lyrics": "【Verse 1】\nYouth blooms like flowers\nDreams soar in the heart"
}'Authentication Information
- Type: Bearer Authentication
- Description: Use a valid API Key for authorization
Request Parameters
- Content-Type: application/json
Parameter List
| Field Name | Type | Required | Description |
|---|---|---|---|
| lyrics | string | Yes | Existing lyrics content |
Response Example
json
{
"code": 0,
"message": "success",
"resp_data": {
"lyrics": "【Verse 1】\nYouth blooms like flowers\nDreams soar in the heart\n\n【Verse 2】\nTime flies like flowing water\nYouthful years never return\nBravely chase dreams without giving up\nThe future is created by me\n\n【Chorus】\nYouth and dreams\nForever in the heart\nBravely move forward\nUnafraid of wind and rain"
}
}