Skip to main content
POST
/
suno
/
v1
/
upload
cURL
curl --request POST \
  --url https://api.ttapi.io/suno/v1/upload \
  --header 'Content-Type: application/json' \
  --header 'TT-API-KEY: <api-key>' \
  --data '
{
  "audio_url": "<string>",
  "is_async": false,
  "hookUrl": "<string>"
}
'
{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "music_id": "music_id"
  }
}
Upload audio to Suno to obtain a job_id or music_id for subsequent operations.
  • When is_async = false (synchronous mode): The API will block until processing is complete and will directly return the music_id.
⚠️ Since the full processing workflow must complete, this may take a long time.
  • When is_async = true (asynchronous mode): The API will return a jobId immediately. You need to use this jobId to call the Fetch Task API to retrieve the final upload result asynchronously.

Authorizations

TT-API-KEY
string
header
required

You can obtain your API key from the TTAPI Dashboard.

Body

application/json
audio_url
string
required

音频地址,必须是可公开访问的音频地址

is_async
boolean
default:false

是否异步

  • false:同步等待

  • true:异步查询

hookUrl
string

Callback notification URL

Response

Request successful

status
string
required
Example:

"SUCCESS"

message
string
required
Example:

"success"

data
object
required

使用同步上传(is_async=false),接口将同步等待返回音频id,接口耗时时间久

Example:
{ "music_id": "music_id" }
Last modified on March 16, 2026