cURL
curl --request POST \ --url https://api.unifically.com/suno/stems-all \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "clip_id": "<string>", "title": "<string>" } '
Extract all available stems from a song
curl -X POST "https://api.unifically.com/suno/stems-all" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "clip_id": "1901ec96-72c6-4c26-8e56-91028ca6070d", "title": "All My Stems" }'