SunoHub
  1. Suno API
SunoHub
  • SunoHub接口文档
    • Suno API
      • 歌曲生成接口
        POST
      • 歌词生成接口
        POST
      • 歌曲任务查询接口
        POST
      • 获取歌曲Timing接口
        POST
      • MP4生成接口
        POST
      • 自定义上传歌曲
        POST
      • 获取Wav接口
        POST
      • 创建Persona接口
        POST
      • 增强风格描述接口
        POST
  1. Suno API

歌词生成接口

开发中
正式环境(默认全球加速)
https://api.sunohub.cn
正式环境(默认全球加速)
https://api.sunohub.cn
POST
https://api.sunohub.cn
/suno/lyrics
最后修改时间:2025-04-17 03:10:21

请求参数

Header 参数
Authorization
string 
用户的使用凭证
可选
默认值:
Bearer {{API_TOKEN}}
Body 参数application/json
prompt
string 
歌词生成的提示词
必需
model
string 
可选
生成歌词采用的模型,默认是default
默认值:
default
示例值:
defaultremi-v1
示例
{
  "prompt": "A song about winter",
  "model": "remi-v1"
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.sunohub.cn/suno/lyrics' \
--header 'Authorization: Bearer asdasdasda9998fads' \
--header 'Content-Type: application/json' \
--data-raw '{
    "prompt": "A song about winter",
    "model": "remi-v1"
}'

返回响应

🟢200成功
application/json
Body
success
boolean 
必需
task_id
string 
必需
data
object 
必需
text
string 
必需
title
string 
必需
tags
array[string]
必需
status
string 
必需
示例
{
  "success": true,
  "task_id": "f0225352-d6b8-4172-af61-3f5bc04d3aae",
  "data": {
    "text": "[Verse]\nFrost is creeping on the glass so clear\nThe roads are silver as the cold draws near\nBreath in clouds as we march through the chill\nWinter's here and it bends to no will\n\n[Chorus]\nOh the winter it roars it sings through the trees\nSharp as the bite of the coldest breeze\nBlanket of white where our footprints remain\nDancing through winter we don’t feel the pain\n\n[Verse 2]\nThe stars hang low like they're shy from the freeze\nMoonlight's a cloak draped over bare trees\nCrunch in the snow as the nights stretch on\nWinter's our stage till the breaking of dawn\n\n[Chorus]\nOh the winter it roars it sings through the trees\nSharp as the bite of the coldest breeze\nBlanket of white where our footprints remain\nDancing through winter we don’t feel the pain\n\n[Bridge]\nThe icicles shimmer like diamonds on display\nPromises whispered in the frost's payday\nEven as it chills it burns something bright\nWinter lingers loud beneath each streetlight\n\n[Chorus]\nOh the winter it roars it sings through the trees\nSharp as the bite of the coldest breeze\nBlanket of white where our footprints remain\nDancing through winter we don’t feel the pain",
    "title": "Frost in the Air",
    "tags": [
      "pop",
      "anthemic"
    ],
    "status": "complete"
  }
}
🟢200remi-v1响应结果
上一页
歌曲生成接口
下一页
歌曲任务查询接口
Built with