Extract vocals and instrumental tracks from a song.

Models

ModelDescriptionPrice
suno-ai/stemsExtract vocals + instrumental$0.05
suno-ai/stems-allExtract all stems$0.20

Parameters

ParameterTypeRequiredDescription
clip_idstringYesClip ID to extract stems from
titlestringNoTitle for extraction

Available Stems (stems-all)

  • Vocals
  • Backing Vocals
  • Drums
  • Bass
  • Guitar
  • Keyboard
  • Percussion
  • Strings
  • Synth
  • FX
  • Brass
  • Woodwinds

Example - Basic Stems

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

Example - All Stems

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

Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}

Pricing

ModelPrice
stems$0.05
stems-all$0.20