POST
/
suno
/
lyrics
Generate Lyrics
curl --request POST \
  --url https://api.unifically.com/suno/lyrics \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "<string>",
  "mv": "<string>"
}
'
{
  "task_id": "<string>"
}
Generate lyrics based on a description. Returns IDs that can be used to fetch the completed lyrics.

Pricing

For current pricing, see the Pricing page.

Request Example

curl -X POST "https://api.unifically.com/suno/lyrics" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "prompt": "A chill rock song about summer days",
    "mv": "remi-v1"
  }'

Parameters

prompt
string
required
Description of lyrics to generate
mv
string
required
Lyrics model version (see Available Models)

Response

{
  "code": 200,
  "data": {
    "task_id": "fd743167-d03d-4c48-84c1-2ca01002562b",
    "error": {}
  }
}
task_id
string
Unique identifier for the lyrics generation task
Use the task_id with the Fetch Lyrics endpoint to retrieve the completed lyrics.