cURL
curl --request POST \ --url https://api.mountsea.ai/producer/stems \ --header 'Content-Type: application/json' \ --data ' { "audioId": "<string>" } '
{ "taskId": "<string>" }
Get stem separation for an audio track
/producer/tasks
curl -X POST https://api.mountsea.ai/producer/stems \ -H "Content-Type: application/json" \ -H "Authorization: Bearer your-api-key" \ -d '{ "audioId": "9719e086-576a-4830-a0f2-7c9424460d6d" }'
{ "taskId": "stem-task-abc123" }
{ "taskId": "stem-task-abc123", "status": "completed", "result": { "vocals": "https://cdn.example.com/stems/vocals.wav", "drums": "https://cdn.example.com/stems/drums.wav", "bass": "https://cdn.example.com/stems/bass.wav", "other": "https://cdn.example.com/stems/other.wav" } }