Quick Start
# 1. Get upload URL
curl -X POST https://api-stag.hudson-ai.com/v1/upload \
-H "Authorization: Bearer TBR_xxx"
# 2. Upload file to returned URL
curl -X PUT "UPLOAD_URL" -H "x-goog-if-generation-match: 0" --data-binary @audio.wav
# 3. Start processing
curl -X POST https://api-stag.hudson-ai.com/v1/audio/separate \
-H "Authorization: Bearer TBR_xxx" \
-H "Content-Type: application/json" \
-d '{"file_id": "file_xxx"}'
# 4. Poll for results
curl https://api-stag.hudson-ai.com/v1/jobs/JOB_ID \
-H "Authorization: Bearer TBR_xxx"Last updated