ModelSell 文档
音频与其他Suno

Suno 生成歌词

POST
/suno/submit/lyrics

提交 Suno 歌词生成任务,成功后返回任务 ID,可通过任务查询接口读取歌词结果。

Authorization

bearerAuth
AuthorizationBearer <token>

使用 Authorization Bearer API Key 进行鉴权。

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/suno/submit/lyrics" \  -H "Content-Type: application/json" \  -d '{    "prompt": "dance"  }'
{
  "code": "success",
  "msg": "成功",
  "data": "c47ec1cf-7e79-4e61-b9fb-2ca2ac36e57b",
  "message": "",
  "exec_time": 0,
  "ip": "string"
}
{
  "error": {
    "code": "string",
    "message": "string",
    "request_id": "string"
  }
}