cURL
curl --request POST \ --url https://api.mountsea.ai/suno/v2/customModel/create \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "sessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "clipIds": [ "cd0440d8-ae0f-4c0b-af4f-149eaa0c38c0" ], "name": "v6Pro" } '
{ "taskId": "15c257ff-43f7-4678-bd41-202ad6b8488b" }
提交训练请求以创建定制模型
taskId
sessionId
chirp-custom:<uuid>
model
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
prepare 返回的会话 sessionId
用于训练定制模型的 clip IDs(至少 6 个,来自 upload 步骤返回的 id)
6
["cd0440d8-ae0f-4c0b-af4f-149eaa0c38c0"]
定制模型名称
"v6Pro"
task id. Use this id to query task status.
"15c257ff-43f7-4678-bd41-202ad6b8488b"