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

Model

elevenlabs/audio-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/audio-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"
    }
  }
}

Pricing

UnitPrice
Per second of audio$0.003068

Use Cases

  • Extract vocals from songs for remixes
  • Remove background music from recordings
  • Clean up audio with noisy backgrounds
  • Isolate speech from interviews or podcasts