跳转到主要内容
POST
/
suno
/
submit
/
lyrics
cURL
curl --request POST \
  --url https://proxy.innk.cc/suno/submit/lyrics \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "dance"
}
'
{
  "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

提示词

Example:

"dance"

Response

200 - application/json

成功响应

code
string
Example:

"success"

message
string
data
string

任务ID

Example:

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