Model
Parameters
Example
Response
Completed Response
Volume discounts are available for almost all models. Reach out at contact@unifically.com to discuss custom pricing.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Isolate vocals from audio with ElevenLabs. See supported inputs, parameters, pricing, response fields, and API examples.
elevenlabs/voice-isolation
| Parameter | Type | Required | Description |
|---|---|---|---|
audio_url | string | Yes | URL of the audio file to isolate vocals from |
nsfw_check | boolean | No | Check uploaded media inputs for NSFW content. Default: true |
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"
}
}'
{
"code": 200,
"success": true,
"data": {
"task_id": "abc123def456",
"status": "processing"
}
}
{
"code": 200,
"success": true,
"data": {
"task_id": "abc123def456",
"status": "completed",
"output": {
"audio_url": "https://files.unifically.com/abc123.mp3"
}
}
}
