Skip to main content
POST
cURL
Upload audio to Suno to obtain a jobId 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

Audio URL. The file must be publicly accessible.

is_async
boolean
default:false

Whether to process asynchronously.

  • false: Wait synchronously for the result.
  • true: Return immediately and query the result asynchronously.
hookUrl
string

Callback notification URL

Response

Request successful

status
string
required
Example:

"SUCCESS"

message
string
required
Example:

"success"

data
object
required

When using synchronous upload (is_async=false), the endpoint waits and returns the audio ID directly. This request may take a while.

Example:
Last modified on July 3, 2026