유연한 파라미터
audio_id, audio_url, audio_weight, continue_at, duration_seconds 포함 21개 문서화된 파라미터를 설정할 수 있습니다.
curl -X POST https://runapi.ai/api/v1/suno/cover_audio \
-H "Authorization: Bearer $RUNAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "suno-v6-mini",
"prompt": "부드러운 피아노, 바이닐 스크래치 소리, 잔잔한 베이스 라인이 있는 2분짜리 lo-fi 칠 비트를 작성해 주세요."
}'
import { SunoClient } from "@runapi.ai/suno";
const client = new SunoClient();
const result = await client.coverAudio.run({
model: "suno-v6-mini",
prompt: "부드러운 피아노, 바이닐 스크래치 소리, 잔잔한 베이스 라인이 있는 2분짜리 lo-fi 칠 비트를 작성해 주세요.",
});
import os
import requests
response = requests.post(
"https://runapi.ai/api/v1/suno/cover_audio",
headers={"Authorization": f"Bearer {os.environ['RUNAPI_API_KEY']}"},
json={"model":"suno-v6-mini","prompt":"부드러운 피아노, 바이닐 스크래치 소리, 잔잔한 베이스 라인이 있는 2분짜리 lo-fi 칠 비트를 작성해 주세요."}
)
response.raise_for_status()
<?php
$client = curl_init("https://runapi.ai/api/v1/suno/cover_audio");
curl_setopt_array($client, [
CURLOPT_HTTPHEADER => ["Authorization: Bearer " . getenv("RUNAPI_API_KEY"), "Content-Type: application/json"],
CURLOPT_POSTFIELDS => json_encode([
'model' => 'suno-v6-mini',
'prompt' => '부드러운 피아노, 바이닐 스크래치 소리, 잔잔한 베이스 라인이 있는 2분짜리 lo-fi 칠 비트를 작성해 주세요.',
])
]);
$response = curl_exec($client);
RunApi client = new RunApi(System.getenv("RUNAPI_API_KEY"));
Task task = client.coverAudio().run({"model":"suno-v6-mini","prompt":"부드러운 피아노, 바이닐 스크래치 소리, 잔잔한 베이스 라인이 있는 2분짜리 lo-fi 칠 비트를 작성해 주세요."});
task.waitForResult();
require "runapi/suno"
client = RunApi::Suno::Client.new
result = client.cover_audio.run(
model: "suno-v6-mini",
prompt: "부드러운 피아노, 바이닐 스크래치 소리, 잔잔한 베이스 라인이 있는 2분짜리 lo-fi 칠 비트를 작성해 주세요."
)
client := runapi.NewClient(os.Getenv("RUNAPI_API_KEY"))
task, err := client.coverAudio.Run({"model":"suno-v6-mini","prompt":"부드러운 피아노, 바이닐 스크래치 소리, 잔잔한 베이스 라인이 있는 2분짜리 lo-fi 칠 비트를 작성해 주세요."})
if err != nil { log.Fatal(err) }
task.Wait()
$ runapi generate \
--model suno-v6-mini \
--endpoint cover_audio \
--wait
사용 가능한 버전 9개
원하는 모델을 선택하고 몇 초 만에 생성해보세요.
원하는 모델을 선택하고 몇 초 만에 생성해보세요.
| 제공자 | Suno |
| 모델 ID | suno-v6-mini |
| 모달리티 | Audio & Music |
| 작업 유형 | Asynchronous |
| API 엔드포인트 | /api/v1/suno/text_to_music, /api/v1/suno/extend_music, /api/v1/suno/cover_audio, /api/v1/suno/create_mashup |
| 청구 단위 | call |
| 입력 매개변수 | audio_id, audio_url, audio_weight, callback_url, continue_at, duration_seconds, instrumental, lyrics, model, negative_tags, parameter_mode, persona_id, persona_type, prompt, style, style_weight, task_id, title, upload_url, upload_url_list, vocal_gender, vocal_mode, weirdness_constraint |
| 카탈로그 상태 | 운영 중 |
무료로 가입하고 대시보드에서 suno-v6-mini용 API 키를 만드세요.
/api/v1/suno/cover_audio로 suno-v6-mini 모델 ID와 매개변수를 포함한 POST 요청을 보내세요.
작업을 폴링하거나 콜백을 따라 완료된 suno-v6-mini 결과를 가져오세요.
audio_id, audio_url, audio_weight, continue_at, duration_seconds 포함 21개 문서화된 파라미터를 설정할 수 있습니다.
4개의 공개 endpoint를 제공합니다: text_to_music, extend_music, cover_audio, create_mashup.
비동기 태스크는 완료 알림을 위한 콜백 URL을 수락합니다.
call 기준으로 측정되며 구독 없이 이용 가능합니다.
styleMusic style.
titleMusic title.
lyricsExact cover lyrics to sing.
promptCover brief for automatic lyrics.
persona_idPersona ID.
upload_urlURL of the audio file to cover.
vocal_modeVocal generation mode. (auto_lyrics, exact_lyrics, instrumental)
audio_weightAudio weight (0-1).
callback_urlWebhook URL for async notifications.
persona_typePersona type. (style, voice)
style_weightStyle adherence weight (0-1).
vocal_genderVocal gender. (male, female)
negative_tagsStyles to avoid.
weirdness_constraintWeirdness constraint (0-1).
트랙과 오디오 asset을 만듭니다.
음성 및 오디오 pipeline을 구축합니다.
개발 환경에 오디오 도구를 제공합니다.
quickstart에 표시된 모델 ID를 전달하세요.
네. 호출 또는 단위 기준으로 측정됩니다.