separate_vocal (default): Separate vocals and accompaniment, generating vocal and instrumental trackssplit_stem: Separate various instrument sounds, generating vocals, backing vocals, drums, bass, guitar, keyboard, strings, brass, woodwinds, percussion, synthesizer, effects, and other trackstaskId identifies the original music generation taskaudioId specifies which audio track to process when multiple variations existtype specifies the separation type, with options separate_vocal or split_stem, default value is separate_vocalseparate_vocal type returns vocal and instrumental trackssplit_stem type returns multiple independent instrument tracks, including vocals, backing vocals, drums, bass, guitar, keyboard, percussion, strings, synthesizer, effects, brass, woodwinds, etc.curl --location --request POST 'https://api.kie.ai/api/v1/vocal-removal/generate' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"taskId": "5c79****be8e",
"audioId": "e231****-****-****-****-****8cadc7dc",
"type": "separate_vocal",
"callBackUrl": "https://api.example.com/callback"
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "5c79****be8e"
}
}