Clone Voice — create Voice Persona from audio_url
curl --request POST \
--url https://api.mountsea.ai/suno/v2/voices \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"audio_url": "https://cdn.acedata.cloud/suno_demo.mp3",
"name": "My Voice",
"description": "<string>"
}
'import requests
url = "https://api.mountsea.ai/suno/v2/voices"
payload = {
"audio_url": "https://cdn.acedata.cloud/suno_demo.mp3",
"name": "My Voice",
"description": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
audio_url: 'https://cdn.acedata.cloud/suno_demo.mp3',
name: 'My Voice',
description: '<string>'
})
};
fetch('https://api.mountsea.ai/suno/v2/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mountsea.ai/suno/v2/voices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'audio_url' => 'https://cdn.acedata.cloud/suno_demo.mp3',
'name' => 'My Voice',
'description' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mountsea.ai/suno/v2/voices"
payload := strings.NewReader("{\n \"audio_url\": \"https://cdn.acedata.cloud/suno_demo.mp3\",\n \"name\": \"My Voice\",\n \"description\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mountsea.ai/suno/v2/voices")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"audio_url\": \"https://cdn.acedata.cloud/suno_demo.mp3\",\n \"name\": \"My Voice\",\n \"description\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mountsea.ai/suno/v2/voices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"audio_url\": \"https://cdn.acedata.cloud/suno_demo.mp3\",\n \"name\": \"My Voice\",\n \"description\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"taskId": "15c257ff-43f7-4678-bd41-202ad6b8488b"
}Voice Persona
Clone Voice
收费 Clone Voice — 产物与 Init + Complete 相同 Voice Persona
POST
/
suno
/
v2
/
voices
Clone Voice — create Voice Persona from audio_url
curl --request POST \
--url https://api.mountsea.ai/suno/v2/voices \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"audio_url": "https://cdn.acedata.cloud/suno_demo.mp3",
"name": "My Voice",
"description": "<string>"
}
'import requests
url = "https://api.mountsea.ai/suno/v2/voices"
payload = {
"audio_url": "https://cdn.acedata.cloud/suno_demo.mp3",
"name": "My Voice",
"description": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
audio_url: 'https://cdn.acedata.cloud/suno_demo.mp3',
name: 'My Voice',
description: '<string>'
})
};
fetch('https://api.mountsea.ai/suno/v2/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mountsea.ai/suno/v2/voices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'audio_url' => 'https://cdn.acedata.cloud/suno_demo.mp3',
'name' => 'My Voice',
'description' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mountsea.ai/suno/v2/voices"
payload := strings.NewReader("{\n \"audio_url\": \"https://cdn.acedata.cloud/suno_demo.mp3\",\n \"name\": \"My Voice\",\n \"description\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mountsea.ai/suno/v2/voices")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"audio_url\": \"https://cdn.acedata.cloud/suno_demo.mp3\",\n \"name\": \"My Voice\",\n \"description\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mountsea.ai/suno/v2/voices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"audio_url\": \"https://cdn.acedata.cloud/suno_demo.mp3\",\n \"name\": \"My Voice\",\n \"description\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"taskId": "15c257ff-43f7-4678-bd41-202ad6b8488b"
}Clone Voice(
返回 任务结果(成功时的
Clone Voice 完成后的真实结果如下,后续
POST /suno/v2/voices)属于 Voice Persona。它是 Init + Complete 的收费一步等价接口:一条公网 audio_url、一次任务,得到同一种 Voice Persona。
收费。 Init + Complete 免费,产物是同一种 Voice Persona。Clone Voice 失败任务不应扣费。详见 Persona 总览。
验证短语仅英语。
/generate 时设 persona.is_voice: true,并走创建时的同一账号。请求
| 字段 | 类型 | 必填 | 说明 |
|---|---|---|---|
audio_url | string (URL) | 是 | 公网可下载的参考音频(MP3/WAV)。时长 10–240 秒;建议 30–60 秒 单人干声 |
name | string | 否 | 音色名称;不传则由系统生成 |
description | string | 否 | 音色描述 |
创建任务
curl -X POST "https://api.mountsea.ai/suno/v2/voices" \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"audio_url": "https://cdn.example.com/reference.mp3",
"name": "My Voice"
}'
{ "taskId": "..." }。用 获取任务状态 轮询,直到 status 为 success。
任务结果(成功时的 data)
Clone Voice 完成后的真实结果如下,后续 /generate 用 persona_id:
{
"name": "voices-ext-fix-verify",
"is_public": false,
"persona_id": "af88153e-a513-432a-a9b5-3948fb562d4b"
}
| 字段 | 类型 | 说明 |
|---|---|---|
persona_id | string | Voice Persona ID,给 /generate 用(is_voice: true) |
name | string | 展示名称 |
is_public | boolean | Clone Voice 固定为私有(false) |
授权
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
请求体
application/json
响应
201 - application/json
task id. Use this id to query task status.
示例:
"15c257ff-43f7-4678-bd41-202ad6b8488b"