🚀 Introducing MARS8 Series — Four Powerful Variants | Available on All Major Clouds | Learn about the model here
🚀 Introducing MARS8 Series — Four Powerful Variants | Available on All Major Clouds | Learn about the model here
Retrieves detail information about a specific audio separation run using the provided run_id.
curl --request GET \
--url https://client.camb.ai/apis/audio-separation-result/{run_id} \
--header 'x-api-key: <api-key>'{
"foreground_audio_url": "<string>",
"background_audio_url": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.camb.ai/llms.txt
Use this file to discover all available pages before exploring further.
run_id that serves as your access key to the processed audio files. Simply make a GET request to this endpoint using that identifier to retrieve download URLs for both audio components.
{
"foreground_audio_url": "<URL_TO_THE_DETECTED_FOREGROUND_AUDIO>",
"background_audio_url": "<URL_TO_THE_DETECTED_BACKGROUND_AUDIO>"
}
The x-api-key is a custom header required for authenticating requests to our API. Include this header in your request with the appropriate API key value to securely access our endpoints. You can find your API key(s) in the 'API' section of our studio website.
The unique identifier for the run, which was generated during the creation process and returned upon task completion.
curl --request GET \
--url https://client.camb.ai/apis/audio-separation-result/{run_id} \
--header 'x-api-key: <api-key>'{
"foreground_audio_url": "<string>",
"background_audio_url": "<string>"
}