Light Mode
Get Generated Lyrics
GET
/api/suno/v1/lyrics/{task_id}This endpoint from PiAPI's Suno API retrieves the output of lyrics synthesis task.
Request
Path Params
task_id
string
required
Header Params
x-api-key
string
required
Insert your API Key here
Example:
{{x-api-key}}
Request samples
Responses
OK(200)
Bad Request(400)
Unauthorized(401)
Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
OK - Successful response
Data Schema
code
integer
optional
data
object
optional
task_id
string
optional
input
string
optional
status
string
optional
title
string
optional
text
string
optional
metadata
object
optional
message
string
optional
ExampleExample 1
{
"code": 200,
"data": {
"task_id": "9b016ff2****************e128eb9bb624",
"input": "{\"prompt\":\"Calm breeze\"}",
"status": "completed",
"title": "Calm breeze",
"text": "[Verse]\nCalm breeze through the trees\nWhispering soft melodies\nLeaves dancing in the breeze\nNature's song with ease\n\n[Verse 2]\nSky so blue and wide\nFeel the freedom inside\nBirds soaring high with pride\nTake me on a ride\n\n[Chorus]\nCalm breeze feel it now\nGentle touch across my brow\nNature's voice a sacred vow\nEndless path we'll plow\n\n[Verse 3]\nSun setting golden hue\nStars begin their nightly cue\nMoonlight casting shadows few\nEndless dreams in view\n\n[Bridge]\nClose your eyes and breathe it in\nSense the world beneath your skin\nWhere the wind and life begin\nLet the journey spin\n\n[Chorus]\nWind blowing feel it now\nGentle touch across my brow\nNature's voice a sacred vow\nEndless path we'll plow",
"metadata": {
"created_at": "2024-06-06T09:27:20.645945729Z",
"started_at": "2024-06-06T09:27:21.641300568Z",
"ended_at": "2024-06-06T09:27:33.657815402Z",
"quota_frozen": 0,
"quota_usage": 0
}
},
"message": "success"
}
Modified at 15 days ago