Skip to main content
POST
/
suno
/
v1
/
remove-section
cURL
curl --request POST \
  --url https://api.ttapi.io/suno/v1/remove-section \
  --header 'Content-Type: application/json' \
  --header 'TT-API-KEY: <api-key>' \
  --data '
{
  "music_id": "<string>",
  "crop_start_s": 123,
  "crop_end_s": 123,
  "isStorage": true,
  "hookUrl": "<string>"
}
'
{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "job_id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  }
}
This endpoint costs 1 quota (approx. $0.01) per request.
Submit the source music_id and the interval to delete using crop_start_s and crop_end_s. Save the returned jobId, then retrieve the edited song through Suno Fetch V2 or the hookUrl callback.

Authorizations

TT-API-KEY
string
header
required

You can obtain your API key from the TTAPI Dashboard.

Body

application/json
music_id
string
required

Source music ID to edit.

crop_start_s
number
required

Start time of the section to remove, in seconds.

crop_end_s
number
required

End time of the section to remove, in seconds.

isStorage
boolean
default:true

Whether to store the edited audio and return a TTAPI CDN URL.

hookUrl
string

Callback URL for task updates and results.

Response

Request successful

status
string
required
Example:

"SUCCESS"

message
string
required
Example:

"success"

data
object
required
Example:
{
"job_id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
Last modified on June 11, 2026