GET
/
suno
/
lyrics
/
{lyricsId}
Fetch Lyrics
curl --request GET \
  --url https://api.unifically.com/suno/lyrics/{lyricsId} \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "<string>",
  "a": {
    "text": "<string>",
    "title": "<string>",
    "status": "<string>",
    "tags": [
      "<string>"
    ]
  },
  "b": {}
}
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):
task_id
string
Unique identifier for the lyrics generation task
a
object
First lyrics variation
text
string
Complete lyrics text with verse/chorus markers
title
string
Generated song title
status
string
Status: complete, pending, or failed
tags
string[]
Genre/style tags
b
object
Second lyrics variation (same structure as a)