生成歌曲(续写-URL直传)
POST /suno/submit/music
概览
| Method | POST |
|---|---|
| Path | /suno/submit/music |
| Type | http |
| Status | -1 |
| Module | 2102810 |
| Folder | 86482047 |
请求体
{ "type": "application/json", "parameters": [], "jsonSchema": { "type": "object", "properties": { "mv": { "description": "模型版本,不传默认 chirp-v5", "type": "string" }, "make_instrumental": { "description": "false=有人声续写,true=纯音乐续写(prompt 可为 \"\")", "type": "boolean" }, "prompt": { "description": "续写部分歌词,有人声时必填,最多 3000 字", "type": "string" }, "tags": { "description": "风格", "type": "string" }, "title": { "description": "标题", "type": "string" }, "continue_clip_id": { "description": "必填,原曲 mp3 公网 URL(http/https 均可);也支持自建 CDN 地址", "type": "string" }, "continue_at": { "description": "从第几秒开始续写,可选;整数或小数,不传则从结尾续", "type": "integer" } }, "required": [ "mv", "make_instrumental", "prompt", "continue_clip_id", "continue_at" ], "x-apifox-orders": [ "mv", "make_instrumental", "prompt", "tags", "title", "continue_clip_id", "continue_at" ] }, "required": true, "mediaType": "", "examples": [ { "mediaType": "application/json", "value": "{\n \"mv\": \"chirp-v5\", // 模型版本,不传默认 chirp-v5\n \"make_instrumental\": false, // false=有人声续写,true=纯音乐续写(prompt 可为 \"\")\n \"prompt\": \"[Verse 1]\\n小狗汪汪叫\", // 续写部分歌词,有人声时必填,最多 3000 字\n \"tags\": \"\", // 风格,可空\n \"title\": \"URL续写测试\", // 标题,可空\n \"continue_clip_id\": \"https://cdn1.suno.ai/xxx.mp3\", // 必填,原曲 mp3 公网 URL(http/https 均可);也支持自建 CDN 地址\n \"continue_at\": 27 // 从第几秒开始续写,可选;整数或小数,不传则从结尾续\n}" } ], "oasExtensions": "" }
响应
[ { "id": 110234807, "name": "成功", "code": 200, "contentType": "json", "jsonSchema": { "type": "object", "properties": {} }, "itemSchema": {}, "description": "", "mediaType": "", "headers": [] } ]