cURL
curl --request POST \ --url https://api.unifically.com/suno/wav \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "clip_id": "<string>" } '
{ "wav_url": "<string>" }
Convert a song to WAV format and get download URL
curl -X POST "https://api.unifically.com/suno/wav" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "clip_id": "5e01ffc9-ecf9-431c-b4b0-2f88ed9ffe20" }'
{ "code": 200, "data": { "wav_url": "https://cdn1.suno.ai/d70dd355-1b85-4ce6-890b-914ffcb600e5.wav", "error": {} } }