Light Mode
Generate Full Song
POST
/api/suno/v1/music/concatThis endpoint from PiAPI's Suno API generates the full song based on extended clips.
Note that this endpoint solely works for Extended Clips
and the results will be accessible in the "Get Music Generation" endpoint.
Request
Header Params
X-API-Key
string
required
Insert your API Key
Example:
{{x-api-key}}
Body Params application/json
clip_id
string
required
The clip_id
of the lastest extended music clip.
Example
{
"clip_id": "0e764cab****************55f76ca44ed6"
}
Request samples
Responses
OK(200)
Bad Request(400)
Unauthorized(401)
Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
OK - Successful response
Data Schema
code
integer
optional
data
object
optional
task_id
string
optional
message
string
optional
ExampleExample 1
{
"code": 200,
"data": {
"task_id": "5440b19a*****************e92de94d5110"
},
"message": "success"
}
Modified at 15 days ago