Extend an existing song or upload audio to extend it.
Pricing
For current pricing, see the Pricing page.
Extend Existing Clip (Simple Mode)
curl -X POST "https://api.unifically.com/suno/extend" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"make_instrumental": true,
"custom": false,
"mv": "chirp-bluejay",
"clip_id": "69ad968a-23c4-40e0-9cdc-80f9649c5209",
"continue_at": 99.6,
"gpt_description_prompt": "Continue the epic chorus"
}'
Upload and Extend (Custom Mode)
curl -X POST "https://api.unifically.com/suno/extend" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"custom": true,
"mv": "chirp-bluejay",
"audio_url": "https://example.com/audio.mp3",
"continue_at": 60,
"prompt": "Extended lyrics here",
"title": "Extended 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 extend
Publicly accessible URL of audio file to extend (if not using clip_id). Supports MP3, WAV formats.Example: "https://example.com/audio.mp3"
Time in seconds where extension should begin
Description for simple mode
Lyrics/prompt for custom mode
Title for the extended version
Generate instrumental version
Advanced controls for custom mode (see Overview)
Response
Response format is the same as Music Generation.