Fetch the completed lyrics using the lyrics ID from the generate endpoint.
Request Example
curl "https://api.unifically.com/suno/lyrics/98a79972-43a9-438f-a9ca-d3bf114eea1d" \
-H "Authorization: Bearer YOUR_API_KEY"
Replace 98a79972-43a9-438f-a9ca-d3bf114eea1d with your actual lyrics ID.
Response
{
"code": 200,
"data": {
"task_id": "fd743167-d03d-4c48-84c1-2ca01002562b",
"a": {
"text": "[Verse]\nOut in the yard\nCrawlin' with all the animals\nWe are animals\nSwimmin' in a pool\nDrinkin' all the drinks with chemicals\nIt's like magic\n\n[Pre-Chorus]\nSun is shinin' every day\nAnd I feel so high\nFor once\nI feel alive\n\n[Chorus]\nI'm high all the days\nI'm high all the days\nI'm high all the days",
"title": "All the Days",
"status": "complete",
"error_message": "",
"tags": [
"chill rock",
"rock"
]
},
"b": {
"text": "[Verse]\nGimme those nights on a beach somewhere\nGimme that saltwater and that ocean air\nGimme those yellow and green and blue and pink sunrises\n\n[Chorus]\nYeah\nYou can have them winter months\nI don't need 'em\nTake 'em all\nJust gimme\nGimme\nGimme\nGimme\nGimme\nThose summer days",
"title": "Summer Days",
"status": "complete",
"error_message": "",
"tags": [
"rock",
"electric guitar",
"chill"
]
},
"error": {}
}
}
Response Fields
The API returns two variations of lyrics (a and b):
Unique identifier for the lyrics generation task
First lyrics variationComplete lyrics text with verse/chorus markers
Status: complete, pending, or failed
Second lyrics variation (same structure as a)