1. 音频-suno
apiplus AI聚合平台
  • Open AI
    • 介绍
    • 身份验证
    • 发出请求
    • 音频(Audio)
      • 创建语音
      • 创建转录
      • 创建翻译
    • 聊天(Chat)
      • gpts 请求
      • 聊天完成块对象
    • GPTs 相关
      • GPTs对话
    • 向量化(embeddings)
      • embeddings
    • token额度查询接口
      GET
  • 文件服务
    • 文件上传(file)
      POST
  • 绘画服务
    • MidJourney
      • MidJourney使用介绍
      • turbo 提交任务
      • 提交任务
      • 查询任务
      • Modal
      • 执行动作
      • 描述
      • Blend
      • 上传图片到Discord
    • Open-AI
      • DALL·E 3
      • gpt-4-all(生成图片)
    • Flux
      • Generate
      • Get Result
  • 视频服务
    • runway
      • chat 格式
        • 生成视频
      • 官方格式
        • 任务查询
        • 提交任务
    • luma
      • 创建视频任务
      • 查询任务
    • Sora
      • Chat 格式生成视频接口
  • Claude AI
    • Claude 会话
      POST
    • Claude 识图
      POST
  • Google AI
    • Google AI 会话
      POST
  • 音频-suno
    • 生成歌曲
      POST
    • 生成歌词
      POST
    • 上传音乐
      POST
    • 歌曲拼接
      POST
    • 任务查询
      GET
  • 数据模型
    • 示例数据模型
      • Pet
      • Category
      • Tag
  1. 音频-suno

生成歌曲

开发中
POST
http://43.153.57.148/v1/suno/submit/music

请求参数

Header 参数

Body 参数application/json

示例
1.灵感模式

{
    "gpt_description_prompt": "cat"
}

2.自定义模式
{
    "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",
    "tags": "emotional punk",
    "mv": "chirp-v3-0",
    "title": "City Lights"
}

3.续写
{
    "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",
    "tags": "bass-driven atmospheric heavy metal",
    "mv": "chirp-v3-0",
    "title": "City Lights",
    "task_id": "736a6f88-bd29-4b1e-b110-37132a5325ac",
    "continue_clip_id": "ce2cfbce-9ea0-45b0-9386-020c0ff54a49",
    "continue_at": 80,
    "task": "extend" 
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://43.153.57.148/v1/suno/submit/music' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '1.灵感模式

{
    "gpt_description_prompt": "cat"
}

2.自定义模式
{
    "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",
    "tags": "emotional punk",
    "mv": "chirp-v3-0",
    "title": "City Lights"
}

3.续写
{
    "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",
    "tags": "bass-driven atmospheric heavy metal",
    "mv": "chirp-v3-0",
    "title": "City Lights",
    "task_id": "736a6f88-bd29-4b1e-b110-37132a5325ac",
    "continue_clip_id": "ce2cfbce-9ea0-45b0-9386-020c0ff54a49",
    "continue_at": 80,
    "task": "extend" 
}'

返回响应

🟢200成功
application/json
Body

示例
{"code":"success","data":"718aa3db-c5ed-4269-a536-c1b6b8a2b3d2","message":""}
修改于 2024-11-22 03:06:52
上一页
Google AI 会话
下一页
生成歌词
Built with