Skip to main content
POST
/
suno
/
v2
/
upload
upload audio to suno
curl --request POST \
  --url https://api.mountsea.ai/suno/v2/upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "audioUrl": "<string>"
}
'
{
  "taskId": "15c257ff-43f7-4678-bd41-202ad6b8488b"
}

upload audio

upload audio

Authorizations

Authorization
string
header
required

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

Body

application/json
audioUrl
string<uri>
required

The audio url to upload, must be a url that we can download

Response

201 - application/json
taskId
string
required

task id. Use this id to query task status.

Example:

"15c257ff-43f7-4678-bd41-202ad6b8488b"