Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
使用 Suno API 拼接多段歌曲
更新日期:2026-06-06
POST /suno/submit/concat
clip_id
is_infill
curl -X POST https://api.crazyrouter.com/suno/submit/concat \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "clip_id": "clip_abc123", "is_infill": false }'
import requests response = requests.post( "https://api.crazyrouter.com/suno/submit/concat", headers={ "Content-Type": "application/json", "Authorization": "Bearer YOUR_API_KEY" }, json={ "clip_id": "clip_abc123", "is_infill": False } ) print(response.json())
{ "code": 1, "description": "提交成功", "result": "concat_task_abc123" }
is_infill: true
{ "clip_id": "clip_abc123", "is_infill": true }