Documentation Index
Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
Use this file to discover all available pages before exploring further.
Generate AI-powered lyrics based on a description.
Model
Parameters
| Parameter | Type | Required | Description |
|---|
prompt | string | Yes | Description of lyrics to generate |
mv | string | Yes | Lyrics 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"]
}
}
}
}