POST
/
suno
/
wav
Convert to WAV
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.

Pricing

For current pricing, see the Pricing page.

Request Example

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"
  }'

Parameters

clip_id
string
required
ID of song to convert

Response

{
  "code": 200,
  "data": {
    "wav_url": "https://cdn1.suno.ai/d70dd355-1b85-4ce6-890b-914ffcb600e5.wav",
    "error": {}
  }
}
wav_url
string
URL to download the WAV file
The WAV file is immediately available for download from the provided URL.