v1
latestOpenAPI 3.1.02026-07-2671117149.2 KBApis
Audio Separation
Get Audio Separation Runs Results
post/audio-separation-results
Request body
Example request
{
"run_ids": [
12345,
6789
]
}Response
Successful Response
BulkAudioSeparationRunsResults required
An object containing the results of one to five audio separation runs. Each key in the object is a unique identifier for a run, and the corresponding value is the files URLs generated by the audio separation process.
Example response
{
"1001": {
"foreground_audio_url": "https://example.com/audio-separation/1001/fg_audio.flac",
"background_audio_url": "https://example.com/audio-separation/1001/bg_audio.flac"
},
"1002": {
"foreground_audio_url": "https://example.com/audio-separation/1002/fg_audio.flac",
"background_audio_url": "https://example.com/audio-separation/1002/bg_audio.flac"
}
}