Theme
Generate Song (Concatenate Song)
POST
https://www.kkiai.com/suno/submit/music
Request Parameters
Authorization
Add the Authorization parameter to the Header, with its value being the Token concatenated after Bearer
Example: Authorization: Bearer ********************
Header Parameters
| Parameter Name | Type | Required | Description | Example |
|---|---|---|---|---|
Content-Type | string | Required | application/json | |
Accept | string | Required | application/json | |
Authorization | string | Optional | Bearer {{YOUR_API_KEY}} |
Body Parameters (application/json)
| Parameter Name | Type | Required | Description |
|---|---|---|---|
clip_id | string | Required | Song ID after extend |
is_infill | boolean | Required |
Request Example
json
{
"clip_id": "EXTENDED_SONG_ID",
"is_infill": false
}cURL Example
bash
curl --location --request POST 'https://www.kkiai.com/suno/submit/music' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--header 'Content-Type: application/json' \
--data-raw '{
"clip_id": "EXTENDED_SONG_ID",
"is_infill": false
}'Response
🟢 200 Success
Response Body
| Parameter Name | Type | Required | Description |
|---|---|---|---|
code | string | Required | |
data | string | Required | |
message | string | Required |
Response Example
json
{
"code": "success",
"data": "950bf3af-78a6-420e-8c01-3bde0bbb3ef9",
"message": ""
}