Add instrumental backing to uploaded music. Note: Only works with uploaded audio, not Suno-generated clips.
Pricing
For current pricing, see the Pricing page.
Simple Mode Example
curl -X POST "https://api.unifically.com/suno/add-instrumental" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"mv": "chirp-bluejay",
"clip_id": "ec0be483-2de2-4abc-a5ce-3d8258f52ed4",
"gpt_description_prompt": "Hip-hop beats with 808 bass",
"start_s": 0,
"end_s": 60
}'
Custom Mode Example
curl -X POST "https://api.unifically.com/suno/add-instrumental" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"mv": "chirp-bluejay",
"clip_id": "ec0be483-2de2-4abc-a5ce-3d8258f52ed4",
"audio_url": "https://example.com/audio.mp3",
"prompt": "Rock guitar and drums",
"title": "With Instrumental",
"start_s": 0,
"end_s": 60,
"advanced_settings": {
"style_weight": 0.7,
"audio_weight": 0.8
}
}'
Parameters
ID of audio clip (from uploaded audio)
Publicly accessible audio file URL. Supports MP3, WAV formats.Example: "https://example.com/audio.mp3"
Description for custom mode
Description prompt for simple mode
Generate instrumental version
Start time in seconds for instrumental overlay
End time in seconds for instrumental overlay
Response
Response format is the same as Music Generation.