Skip to main content
POST
/
suno
/
v1
/
remaster
cURL
curl --request POST \
  --url https://api.ttapi.io/suno/v1/remaster \
  --header 'Content-Type: application/json' \
  --header 'TT-API-KEY: <api-key>' \
  --data '
{
  "music_id": "<string>",
  "mv": "chirp-v5",
  "variation_category": "subtle",
  "isStorage": false,
  "hookUrl": "<string>"
}
'
{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "job_id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  }
}
Features:
  • Improve clarity and spatial depth
  • Adjust EQ and dynamic range
  • Enhance bass and vocal presence
  • Ideal for pre-release polishing or upgrading older tracks

Authorizations

TT-API-KEY
string
header
required

You can obtain your API key from the TTAPI Dashboard.

Body

application/json
music_id
string
required

音频ID

mv
string
default:chirp-v5
required

使用模型 支持模型如下所示:

  • chirp-v5
  • chirp-v4-5+
  • chirp-v4
variation_category
enum<string>

控制歌曲被转换程度

Available options:
subtle,
normal,
high
isStorage
boolean
default:false

Whether to store the generated audio.

  • true: The audio will be stored and a TTAPI CDN URL will be returned
  • false: The original source URL will be returned
hookUrl
string

Callback notification URL

Response

Request successful

status
string
required
Example:

"SUCCESS"

message
string
required
Example:

"success"

data
object
required
Example:
{
"job_id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
Last modified on March 13, 2026