Isolate vocals from audio files using ElevenLabs AI, removing background music and noise.

Model

elevenlabs/voice-isolation

Parameters

ParameterTypeRequiredDescription
audio_urlstringYesURL of the audio file to isolate vocals from

Example

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "elevenlabs/voice-isolation",
    "input": {
      "audio_url": "https://example.com/audio.mp3"
    }
  }'

Response

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

Completed Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "completed",
    "output": {
      "audio_url": "https://files.storagecdn.online/abc123.mp3"
    }
  }
}