跳转到主要内容
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": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ttapi.io/llms.txt

Use this file to discover all available pages before exploring further.

授权

TT-API-KEY
string
header
必填

请前往 TTAPI 控制台 获取 API 密钥。

请求体

application/json
music_id
string
必填

音频ID

mv
enum<string>
默认值:chirp-v5
必填

使用模型

可用选项:
chirp-v5-5,
chirp-v5,
chirp-v4-5+
variation_category
enum<string>

控制歌曲被转换程度

可用选项:
subtle,
normal,
high
isStorage
boolean
默认值:false

是否转存

  • true:音频将进行转存,返回TTAPI CDN地址
  • false:返回官方源地址
hookUrl
string

回调通知地址

响应

请求成功

status
string
必填
示例:

"SUCCESS"

message
string
必填
示例:

"success"

data
object
必填
示例:
{
"job_id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
Last modified on March 21, 2026