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
Paid Clone Voice — same Voice Persona as Init + Complete
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 (
Returns Task result (
This is the real payload after Clone Voice finishes — use
POST /suno/v2/voices) is a Voice Persona API. It is the paid one-step equivalent of Init + Complete: one public audio_url, one task, same Voice Persona.
Billed. The Init + Complete path is free and produces the same Voice Persona. Failed Clone Voice tasks should not be billed. See Persona overview.
Phrase language is English only. On
/generate set persona.is_voice: true and stay on the creating account.Request
| Field | Type | Required | Description |
|---|---|---|---|
audio_url | string (URL) | Yes | Publicly downloadable reference audio (MP3/WAV). Duration 10–240s; 30–60s dry solo vocal recommended |
name | string | No | Voice name; generated if omitted |
description | string | No | Voice description |
Create task
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": "..." }. Poll Get Task Status until status is success.
Task result (data when success)
This is the real payload after Clone Voice finishes — use persona_id on /generate:
{
"name": "voices-ext-fix-verify",
"is_public": false,
"persona_id": "af88153e-a513-432a-a9b5-3948fb562d4b"
}
| Field | Type | Description |
|---|---|---|
persona_id | string | Voice Persona ID for /generate (is_voice: true) |
name | string | Display name |
is_public | boolean | Always private for Clone Voice (false) |
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
201 - application/json
task id. Use this id to query task status.
Example:
"15c257ff-43f7-4678-bd41-202ad6b8488b"