Generate a cover version of an existing song or uploaded audio.
Pricing
For current pricing, see the Pricing page.
Cover Existing Clip (Simple Mode)
curl -X POST "https://api.unifically.com/suno/cover" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"make_instrumental": true,
"custom": false,
"clip_id": "5a6bb955-1536-4f43-877a-b4aa9fb18a4e",
"gpt_description_prompt": "My custom cover lyrics"
}'
Upload and Cover (Custom Mode)
curl -X POST "https://api.unifically.com/suno/cover" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"make_instrumental": true,
"custom": true,
"audio_url": "https://example.com/audio.mp3",
"prompt": "Jazz style cover",
"title": "My Cover Version",
"advanced_settings": {
"audio_weight": 0.8,
"vocal_gender": "m"
}
}'
Parameters
Use custom mode (true) or simple mode (false)
ID of existing Suno clip to cover
Publicly accessible URL of audio file to cover (if not using clip_id). Supports MP3, WAV formats.Example: "https://example.com/audio.mp3"
Description for simple mode
Style/prompt for custom mode
Title for the cover version
Generate instrumental version
Advanced controls for custom mode (see Overview)
Response
Response format is the same as Music Generation.