Skip to main content
POST
/
suno
/
generate
/
concat
/
v2
Step 5: Get Complete Music
curl --request POST \
  --url https://gptproto.com/suno/generate/concat/v2 \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "clip_id": "<string>",
  "is_infill": true
}'
{
  "error": {
    "message": "Invalid request parameters",
    "type": "invalid_request_error",
    "code": "invalid_parameters"
  }
}

Overview

After writing music, get the complete music of the original music and the merged music

Authentication

This endpoint requires authentication using a Bearer token.
Authorization
string
required
Your API key in the format: Bearer YOUR_API_KEY

Request Body

clip_id
string
Clip Id parameter
is_infill
boolean
Is Infill parameter

Request Example

curl -X POST "https://gptproto.com/suno/generate/concat/v2" \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "clip_id": "186653a1-ef95-4db5-8808-af10247267ce",
  "is_infill": false
}'

Response

Success
200
Successful response
{
  "status": "success"
}

Error Responses

{
  "error": {
    "message": "Invalid request parameters",
    "type": "invalid_request_error",
    "code": "invalid_parameters"
  }
}