模型 PROMPTS

suno-v4 Prompts — 53 个精选示例

通过 RunAPI 使用 suno-v4 的示例。复制 prompt 后,可在 Claude Code、Codex、Cursor、Windsurf 或后端 API 中使用。

模型

suno-v4

模态
音乐
提供方
Suno
Endpoint
Text To Music
查看模型详情和定价 →
1. claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
2. 重启 Claude Code
3. 粘贴这个 prompt:生成音乐:"Indie folk, 92 BPM, melancholic, fingerstyle acoustic guitar, whispered vocals, 2010s indie style"
1. codex plugin install runapi-mcp@agents
2. 重启 Codex
3. 粘贴这个 prompt:生成音乐:"Indie folk, 92 BPM, melancholic, fingerstyle acoustic guitar, whispered vocals, 2010s indie style"
1. npx @runapi.ai/mcp init cursor
2. 重启 Cursor
3. 粘贴这个 prompt:生成音乐:"Indie folk, 92 BPM, melancholic, fingerstyle acoustic guitar, whispered vocals, 2010s indie style"
1. npx @runapi.ai/mcp init windsurf
2. 重启 Windsurf
3. 粘贴这个 prompt:生成音乐:"Indie folk, 92 BPM, melancholic, fingerstyle acoustic guitar, whispered vocals, 2010s indie style"
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Indie folk, 92 BPM, melancholic, fingerstyle acoustic guitar, whispered vocals, 2010s indie style"
}
JSON
import { SunoClient } from "@runapi.ai/suno";

const client = new SunoClient({
  apiKey: process.env.RUNAPI_API_KEY,
});

const result = await client.textToMusic.run({
  "model": "suno-v4",
  "prompt": "Indie folk, 92 BPM, melancholic, fingerstyle acoustic guitar, whispered vocals, 2010s indie style"
});
console.log(result.id);
require "runapi/suno"

client = RunApi::Suno::Client.new
result = client.text_to_music.run(
  model: "suno-v4",
  prompt: "Indie folk, 92 BPM, melancholic, fingerstyle acoustic guitar, whispered vocals, 2010s indie style"
)
puts result.id
package main

import (
  "context"
  "fmt"
  "log"
  "net/http"
  "os"
  "strings"
)

func main() {
  body := strings.NewReader("{\"model\":\"suno-v4\",\"prompt\":\"Indie folk, 92 BPM, melancholic, fingerstyle acoustic guitar, whispered vocals, 2010s indie style\"}")
  req, err := http.NewRequestWithContext(context.Background(), http.MethodPost, "https://runapi.ai/api/v1/suno/text_to_music", body)
  if err != nil {
    log.Fatal(err)
  }

  req.Header.Set("Authorization", "Bearer "+os.Getenv("RUNAPI_API_KEY"))
  req.Header.Set("Content-Type", "application/json")

  resp, err := http.DefaultClient.Do(req)
  if err != nil {
    log.Fatal(err)
  }
  defer resp.Body.Close()

  fmt.Println(resp.Status)
}
suno-v4 /api/v1/suno/text_to_music 获取 API Key
MU
音乐
alternative rock suno-v4

Alternative Rock, Experimental, Atmospheric

Alternative Rock, Experimental, Atmospheric

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Alternative Rock, Experimental, Atmospheric"
}
JSON
MU
音乐
post-rock suno-v4

Post-Rock, Ethereal, Atmospheric, Icelandic

Post-Rock, Ethereal, Atmospheric, Icelandic

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Post-Rock, Ethereal, Atmospheric, Icelandic"
}
JSON
MU
音乐
gregorian chorale suno-v4

gregorian chorale, choir, carried singing, epic, majestic, e...

gregorian chorale, choir, carried singing, epic, majestic, ecclesiastical

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "gregorian chorale, choir, carried singing, epic, majestic, ecclesiastical"
}
JSON
MU
音乐
math rock suno-v4

math rock, J-pop, mutation funk, bounce drop, dubstep, edm,...

math rock, J-pop, mutation funk, bounce drop, dubstep, edm, 160bpm

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "math rock, J-pop, mutation funk, bounce drop, dubstep, edm, 160bpm"
}
JSON
MU
音乐
pentatonic scale suno-v4

Pentatonic Scale, Modern Classic, Game Music, Guzheng & Pian...

Pentatonic Scale, Modern Classic, Game Music, Guzheng & Piano & Chinese Drum & Cello, Slow, Sad, Mellow

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Pentatonic Scale, Modern Classic, Game Music, Guzheng & Piano & Chinese Drum & Cello, Slow, Sad, Mellow"
}
JSON
MU
音乐
anime opening suno-v4

anime opening, heavy metal, male vocal

anime opening, heavy metal, male vocal

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "anime opening, heavy metal, male vocal"
}
JSON
MU
音乐
worship suno-v4

Uplifting atmospheric worship ballad with ethereal vocals an...

Uplifting atmospheric worship ballad with ethereal vocals and sweeping orchestral arrangements

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Uplifting atmospheric worship ballad with ethereal vocals and sweeping orchestral arrangements"
}
JSON
MU
音乐
baroque pop suno-v4

Baroque pop, intricate melodies, orchestral arrangements, ha...

Baroque pop, intricate melodies, orchestral arrangements, harpsichord flourishes, and poetic lyrics

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Baroque pop, intricate melodies, orchestral arrangements, harpsichord flourishes, and poetic lyrics"
}
JSON
MU
音乐
tropical house suno-v4

Tropical house, upbeat, sun-kissed melodies, steel drums, br...

Tropical house, upbeat, sun-kissed melodies, steel drums, breezy vocals, and a laid-back rhythm

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Tropical house, upbeat, sun-kissed melodies, steel drums, breezy vocals, and a laid-back rhythm"
}
JSON
MU
音乐
psychedelic funk suno-v4

Psychedelic funk, groovy bass lines, wah-wah guitars, trippy...

Psychedelic funk, groovy bass lines, wah-wah guitars, trippy effects, and energetic brass sections

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Psychedelic funk, groovy bass lines, wah-wah guitars, trippy effects, and energetic brass sections"
}
JSON
MU
音乐
Balkan suno-v4

Balkan electro swing, energetic brass ensembles, electronic...

Balkan electro swing, energetic brass ensembles, electronic beats, folk melodies, and dance rhythms

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Balkan electro swing, energetic brass ensembles, electronic beats, folk melodies, and dance rhythms"
}
JSON
MU
音乐
dark ambient suno-v4

Dark ambient, atmospheric soundscapes, slow-moving textures,...

Dark ambient, atmospheric soundscapes, slow-moving textures, and an unsettling, eerie mood

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Dark ambient, atmospheric soundscapes, slow-moving textures, and an unsettling, eerie mood"
}
JSON
MU
音乐
indie surf rock suno-v4

Indie surf rock, jangly guitars, beachy vibes, carefree voca...

Indie surf rock, jangly guitars, beachy vibes, carefree vocals, and upbeat, sunny melodies

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Indie surf rock, jangly guitars, beachy vibes, carefree vocals, and upbeat, sunny melodies"
}
JSON
MU
音乐
cinematic suno-v4

Cinematic gospel arrangement with choir support, organ, wide...

Cinematic gospel arrangement with choir support, organ, wider reverb, slower rise into chorus, and a more dramatic lead vocal

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Cinematic gospel arrangement with choir support, organ, wider reverb, slower rise into chorus, and a more dramatic lead vocal"
}
JSON
MU
音乐
acoustic soul suno-v4

Transform this into a warm acoustic soul version with gentle...

Transform this into a warm acoustic soul version with gentle electric piano, restrained drums, intimate male vocal, steady groove, preserve the original chorus melody, avoid EDM drops and heavy distortion

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Transform this into a warm acoustic soul version with gentle electric piano, restrained drums, intimate male vocal, steady groove, preserve the original chorus melody, avoid EDM drops and heavy distortion"
}
JSON
MU
音乐
parameterized metatags suno-v4

[Intro: ambient pads, reversed guitar, ethereal] [Verse 1:...

[Intro: ambient pads, reversed guitar, ethereal] [Verse 1: lo-fi drums, muted bass, whispered vocals] Walking through the rain at midnight Neon signs reflecting off the street [Pre-Chorus: building energy, adding layers] Something in the air is changing I can feel it pulling at my feet [Chorus: full production, soaring vocals, epic drums] We are the light that never fades Burning through the endless maze [Bridge: stripped down, piano only, vulnerable vocals] All the words I never said Echo softly in my head [Outro: fade out, ambient reprise]

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "[Intro: ambient pads, reversed guitar, ethereal] [Verse 1: lo-fi drums, muted bass, whispered vocals] Walking through the rain at midnight Neon signs reflecting off the street [Pre-Chorus: building energy, adding layers] Something in the air is changing I can feel it pulling at my feet [Chorus: full production, soaring vocals, epic drums] We are the light that never fades Burning through the endless maze [Bridge: stripped down, piano only, vulnerable vocals] All the words I never said Echo softly in my head [Outro: fade out, ambient reprise]"
}
JSON
MU
音乐
verse-chorus structure suno-v4

[Verse] soft acoustic guitar the morning light filters throu...

[Verse] soft acoustic guitar the morning light filters through [Chorus] soaring vocals with full band we rise above the clouds [Bridge: piano only, vulnerable vocals] all the weight we carry [Outro: fade out]

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "[Verse] soft acoustic guitar the morning light filters through [Chorus] soaring vocals with full band we rise above the clouds [Bridge: piano only, vulnerable vocals] all the weight we carry [Outro: fade out]"
}
JSON
MU
音乐
garage rock suno-v4

Garage rock, raw and aggressive, distorted bass, room mic dr...

Garage rock, raw and aggressive, distorted bass, room mic drums, shouted male vocals, lo-fi production

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Garage rock, raw and aggressive, distorted bass, room mic drums, shouted male vocals, lo-fi production"
}
JSON
MU
音乐
jazz-funk suno-v4

Jazz-funk fusion, slap bass, Rhodes piano, syncopated drums,...

Jazz-funk fusion, slap bass, Rhodes piano, syncopated drums, groovy and sophisticated

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Jazz-funk fusion, slap bass, Rhodes piano, syncopated drums, groovy and sophisticated"
}
JSON
MU
音乐
synthwave suno-v4

80s synthwave meets modern trap, analog synths, 808 bass, re...

80s synthwave meets modern trap, analog synths, 808 bass, retro-futuristic

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "80s synthwave meets modern trap, analog synths, 808 bass, retro-futuristic"
}
JSON
MU
音乐
cinematic suno-v4

Cinematic orchestral score, sweeping strings, French horns,...

Cinematic orchestral score, sweeping strings, French horns, timpani rolls, epic and triumphant, Hans Zimmer inspired

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Cinematic orchestral score, sweeping strings, French horns, timpani rolls, epic and triumphant, Hans Zimmer inspired"
}
JSON
MU
音乐
ambient electronic suno-v4

Ambient electronic, pad textures, slow evolving synths, ethe...

Ambient electronic, pad textures, slow evolving synths, ethereal and spacious, Brian Eno inspired

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "Ambient electronic, pad textures, slow evolving synths, ethereal and spacious, Brian Eno inspired"
}
JSON
MU
音乐
outro suno-v4

[Outro: fade out, ambient reprise]

[Outro: fade out, ambient reprise]

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "[Outro: fade out, ambient reprise]"
}
JSON
MU
音乐
build-up suno-v4

[Build-Up] [Drop: full energy, heavy drums]

[Build-Up] [Drop: full energy, heavy drums]

查看 API 代码
curl -X POST https://runapi.ai/api/v1/suno/text_to_music \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "suno-v4",
  "prompt": "[Build-Up] [Drop: full energy, heavy drums]"
}
JSON
常见问题

使用 suno-v4 prompts

%{model} 是什么?

%{model} 是 RunAPI 统一模型目录中的模型。这些 prompts 展示了 agent 和后端服务可以复用的实际输入模式。

如何使用这些 prompts?

安装 RunAPI MCP Server 后,复制任意 prompt 并粘贴到 Claude Code、Codex、Cursor 或 Windsurf。开发者也可以复制 API 示例直接调用。

浏览这些 prompts 要付费吗?

浏览和复制 prompt 示例是免费的。只有当你使用 API key 调用 RunAPI 模型生成内容时,才会产生费用。

这些 prompts 可以用于生产环境吗?

可以。把每个 prompt 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。