POST
/
suno
/
stems-all
Extract All Stems
curl --request POST \
  --url https://api.unifically.com/suno/stems-all \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "clip_id": "<string>",
  "title": "<string>"
}
'
Extract all available stems from a song (vocals, instrumental, drums, bass, etc.).

Pricing

For current pricing, see the Pricing page.

Request Example

curl -X POST "https://api.unifically.com/suno/stems-all" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "clip_id": "1901ec96-72c6-4c26-8e56-91028ca6070d",
    "title": "All My Stems"
  }'

Parameters

clip_id
string
required
ID of song to extract all stems from
title
string
Title for stem extraction

Response

Response format is the same as Extract Stems. The response includes all available stem types:
  • Vocals
  • Backing Vocals
  • Drums
  • Bass
  • Guitar
  • Keyboard
  • Percussion
  • Strings
  • Synth
  • FX
  • Brass
  • Woodwinds
Use the clip IDs with the Get Feed Info endpoint to download the stem files.