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
Description of lyrics to generate
Response
{
"code": 200,
"data": {
"task_id": "fd743167-d03d-4c48-84c1-2ca01002562b",
"error": {}
}
}
Unique identifier for the lyrics generation task
Use the task_id with the Fetch Lyrics endpoint to retrieve the completed lyrics.