latestOpenAPI 3.1.02026-08-12154749.3 KB

ebb545e26e94

Stem Separation

Clean voice from background music

Typical usage case - is voice with background music.
Demuser will separate voice (stem) and music (back).
Result of /check/ includes 2 tracks:
- stem:{"type":"stem", "label":"music", "url":"..."}
- back:{"type":"back", "label":"no_music", "url":"..."}
post/api/v1/split/demuser/

Request body

source_idstring uuid4 required

ID of the source file to be processed.

idempotency_keystring uuid4 nullable

Unique uuid4 key to ensure idempotent requests.

Prevents duplicate task execution with the same parameters.

Can be reused until the task starts. Once processing begins, reusing this key will return an error.

Example request

{
  "source_id": "2fe8f214-1771-4900-9e7e-570f823bd359",
  "presets": {
    "stem": "music"
  }
}

Response

OK

task_idstring required

ID of the created split task.

Example response

{
  "task_id": "e1fc1d8f-502e-4de0-bf3b-b30543d11c77"
}