Skip to main content
POST
/
suno
/
v1
/
stems
cURL
curl --request POST \
  --url https://api.ttapi.io/suno/v1/stems \
  --header 'Content-Type: application/json' \
  --header 'TT-API-KEY: <api-key>' \
  --data '
{
  "music_id": "<string>",
  "isStorage": false,
  "hookUrl": "<string>"
}
'
{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "job_id": "job_id"
  }
}
分离歌曲中的人声或单独轨道。 功能特点
  • 精准提取人声或伴奏
  • 降低串音干扰,保持音质清晰
  • 支持单轨导出,便于二次创作
  • 适用于剪辑、混音、翻唱练习

Authorizations

TT-API-KEY
string
header
required

授权字段,控制台获取授权信息

Body

application/json
music_id
string
required

要分离的音轨的音频ID

isStorage
boolean
default:false

是否转存

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

回调通知地址

Response

请求成功

status
string
required
Example:

"SUCCESS"

message
string
required
Example:

"success"

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