Skip to main content
POST
/
producer
/
download
下载音频
curl --request POST \
  --url https://api.mountsea.ai/producer/download \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "audioId": "<string>",
  "format": "m4a"
}
'
{
  "taskId": "<string>"
}
Download a generated audio file in the specified format.
This is an async task. The response contains a taskId — use Get Task Status to poll for the download URL.

Format Recommendations

FormatBest For
mp3Sharing and streaming (smallest file size)
m4aGeneral use (default, good quality/size balance)
wavProfessional editing (uncompressed, highest quality)
Download URLs are temporary. Save the file promptly after receiving the URL.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
audioId
string
required

音频 ID

format
enum<string>
default:m4a

格式(mp3/m4a/wav),默认 m4a

Available options:
mp3,
m4a,
wav

Response

任务创建成功

taskId
string
required

任务 ID,用于后续查询结果