Theme
Scenario Three: Pure Music - Custom
POST
https://www.kkiai.com/suno/generate
Request Parameters
Authorization
Add the Authorization parameter to the Header. Its value is the Token concatenated after Bearer.
Example: Authorization: Bearer ********************
Request Example
json
{
"prompt": "",
"tags": "heavy metal",
"mv": "chirp-v3-5",
"title": "new york",
"continue_clip_id": null,
"continue_at": null,
"infill_start_s": null,
"infill_end_s": null
}cURL Example
bash
curl --location --request POST 'https://www.kkiai.com/suno/generate' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"prompt": "",
"tags": "heavy metal",
"mv": "chirp-v3-5",
"title": "new york",
"continue_clip_id": null,
"continue_at": null,
"infill_start_s": null,
"infill_end_s": null
}'Response
🟢 200 Success
Response Example
json
{}