v1

latestOpenAPI 3.1.02026-07-2671117149.2 KB
Apis
Audio Separation

Get Audio Separation Runs Results

post/audio-separation-results

Request body

run_idsinteger[] required

An array of unique positive integers, each representing the ID of a specific run. You must provide between 2 and 5 IDs, and all IDs must correspond to the same run type (e.g., all text-to-speech or all dubbing runs).

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"
  }
}