跳转到主要内容
POST
/
suno
/
submit
/
music
cURL
curl --request POST \
  --url https://proxy.innk.cc/suno/submit/music \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data @- <<EOF
{
  "prompt": "[Verse]\nWalking down the streets\nBeneath the city lights\nNeon signs flickering\nLighting up the night\nHeart beating faster\nLike a drum in my chest\nI'm alive in this moment\nFeeling so blessed\n\nStilettos on the pavement\nStepping with grace\nSurrounded by the people\nMoving at their own pace\nThe rhythm of the city\nIt pulses in my veins\nLost in the energy\nAs my worries drain\n\n[Verse 2]\nConcrete jungle shining\nWith its dazzling glow\nEvery corner hiding secrets that only locals know\nA symphony of chaos\nBut it's music to my ears\nThe hustle and the bustle\nWiping away my fears",
  "make_instrumental": false,
  "mv": "chirp-v4",
  "title": "City Lights",
  "task_id": "<string>",
  "continue_at": 123,
  "continue_clip_id": "<string>",
  "notify_hook": "<string>",
  "tags": "emotional punk",
  "task": "<string>",
  "negative_tags": "<string>"
}
EOF
{
  "code": "success",
  "message": "<string>",
  "data": "736a6f88-bd29-4b1e-b110-37132a5325ac"
}

Authorizations

Authorization
string
header
required

身份验证标头格式为 Bearer <API_KEY>,其中 <API_KEY> 是您的API令牌。

Body

application/json
prompt
string
required

歌词

Example:

"[Verse]\nWalking down the streets\nBeneath the city lights\nNeon signs flickering\nLighting up the night\nHeart beating faster\nLike a drum in my chest\nI'm alive in this moment\nFeeling so blessed\n\nStilettos on the pavement\nStepping with grace\nSurrounded by the people\nMoving at their own pace\nThe rhythm of the city\nIt pulses in my veins\nLost in the energy\nAs my worries drain\n\n[Verse 2]\nConcrete jungle shining\nWith its dazzling glow\nEvery corner hiding secrets that only locals know\nA symphony of chaos\nBut it's music to my ears\nThe hustle and the bustle\nWiping away my fears"

make_instrumental
boolean
default:false
required

是否生成纯音乐,true 为生成纯音乐

mv
enum<string>
default:chirp-v4

模型版本

可用选项:
chirp-v3-5,
chirp-v4,
chirp-auk,
chirp-bluejay,
chirp-crow
title
string

标题

Example:

"City Lights"

task_id
string

任务id,用于对之前的任务再操作时必填

continue_at
number

float,歌曲延长时间,单位秒

continue_clip_id
string

歌曲id,需要续写哪首歌

notify_hook
string

回调地址: https://xxxxxxx

tags
string

风格标签 chirp-v3-5,chirp-v4: prompt 3000字符,tags 200字符 chirp-auk,chirp-bluejay,chirp-crow模型: prompt 5000字符,tags 1000字符

Example:

"emotional punk"

task
string

上传后续写必填

negative_tags
string

排除的风格标签

Response

200 - application/json

成功响应

code
string
Example:

"success"

message
string
data
string

任务ID

Example:

"736a6f88-bd29-4b1e-b110-37132a5325ac"