跳轉到主要內容
Producer 允許我們下載歌曲相關的WAV文件,本文檔講解相關 API 的對接方法。 該 API 只有一個輸入參數,就是 audio_id,它是歌曲唯一的ID。 這裡我們輸入的 audio_ida54609c6-13e2-4176-be0f-4d7eebc68e1f,是一個Producer生成的歌曲ID。
curl -X POST 'https://api.acedata.cloud/producer/wav' \
-H 'accept: application/json' \
-H 'authorization: Bearer {token}' \
-H 'content-type: application/json' \
-d '{
  "audio_id": "a54609c6-13e2-4176-be0f-4d7eebc68e1f"
}'
結果如下:
{
  "success": true,
  "task_id": "44963173-b6c5-463c-915f-96730d14ec63",
  "trace_id": "f75d6a27-54bc-49fd-a40e-6d4cd0427764",
  "data": [
    {
      "title": "Woke up with the sun in my eyes",
      "file_url": "https://cdn.ttapi.io/other/2025-12-30/a1508051-a6b8-4867-8cbb-32273a99c2ae.wav"
    }
  ]
}
可以看到,datafile_url 欄位就是下載的WAV鏈接。