Skip to main content
POST
/
flowmusic
/
v1
/
upload-audio
cURL
curl --request POST \
  --url https://api.ttapi.io/flowmusic/v1/upload-audio \
  --header 'Content-Type: application/json' \
  --header 'TT-API-KEY: <api-key>' \
  --data '
{
  "audio_url": "<string>",
  "hook_url": "<string>"
}
'
{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "job_id": "job_id"
  }
}

Authorizations

TT-API-KEY
string
header
required

Please visit TTAPI Dashboard to obtain your API key.

Body

application/json
audio_url
string
required

Audio file URL to upload, only supports common audio file extensions

hook_url
string

Business callback URL after task completion; no callback push when empty

Response

Request successful

status
string
required
Example:

"SUCCESS"

message
string
required
Example:

"success"

data
object
required
Example:
{ "job_id": "job_id" }
Last modified on April 25, 2026