Generate AI-powered lyrics based on a description.

Model

suno-ai/lyrics

Parameters

ParameterTypeRequiredDescription
promptstringYesDescription of lyrics to generate
mvstringYesLyrics model: remi-v1 or default

Example

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

Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}

Completed Response

The API returns two variations of lyrics (a and b):
{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "fd743167-d03d-4c48-84c1-2ca01002562b",
    "status": "completed",
    "output": {
      "a": {
        "text": "[Verse]\nOut in the yard\nCrawlin' with all the animals...",
        "title": "All the Days",
        "tags": ["chill rock", "rock"]
      },
      "b": {
        "text": "[Verse]\nGimme those nights on a beach somewhere...",
        "title": "Summer Days",
        "tags": ["rock", "electric guitar", "chill"]
      }
    }
  }
}

Pricing

$0.012 per generation