Skip to main content
POST
/
suno
/
v1
/
vox
cURL
curl --request POST \
  --url https://api.ttapi.io/suno/v1/vox \
  --header 'Content-Type: application/json' \
  --header 'TT-API-KEY: <api-key>' \
  --data '
{
  "music_id": "<string>",
  "vocal_start_s": 123,
  "vocal_end_s": 123
}
'
{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "id": "<string>",
    "status": "<string>",
    "source_clip_id": "<string>",
    "vocal_start_s": 123,
    "vocal_end_s": 123,
    "wave_response": {}
  }
}
Extract a music segment to obtain the singer’s vox_audio_id.
Use this API to get the vox_audio_id parameter. It supports multiple input parameters, such as audio_id, vocal_start, and vocal_end, based on the reference song ID and the selected time range.

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

vocal_start_s
number

如果传入 vox_audio_id 此参数为必传,值与 获取歌手VOX接口 中入参一致

vocal_end_s
number

如果传入 vox_audio_id 此参数为必传,值与 获取歌手VOX接口 中入参一致

Response

Request successful

status
string
required
Example:

"SUCCESS"

message
string
required
Example:

"success"

data
object
required
Last modified on March 16, 2026