Mashup Lyrics
curl --request POST \
--url https://api.mountsea.ai/suno/v2/mashupLyrics \
--header 'Content-Type: application/json' \
--data '
{
"lyrics_a": "<string>",
"lyrics_b": "<string>"
}
'import requests
url = "https://api.mountsea.ai/suno/v2/mashupLyrics"
payload = {
"lyrics_a": "<string>",
"lyrics_b": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({lyrics_a: '<string>', lyrics_b: '<string>'})
};
fetch('https://api.mountsea.ai/suno/v2/mashupLyrics', 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/mashupLyrics",
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([
'lyrics_a' => '<string>',
'lyrics_b' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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/mashupLyrics"
payload := strings.NewReader("{\n \"lyrics_a\": \"<string>\",\n \"lyrics_b\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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/mashupLyrics")
.header("Content-Type", "application/json")
.body("{\n \"lyrics_a\": \"<string>\",\n \"lyrics_b\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mountsea.ai/suno/v2/mashupLyrics")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"lyrics_a\": \"<string>\",\n \"lyrics_b\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"taskId": "<string>"
}Suno
Mashup Lyrics
Generate mashup lyrics by combining lyrics from two songs
POST
/
suno
/
v2
/
mashupLyrics
Mashup Lyrics
curl --request POST \
--url https://api.mountsea.ai/suno/v2/mashupLyrics \
--header 'Content-Type: application/json' \
--data '
{
"lyrics_a": "<string>",
"lyrics_b": "<string>"
}
'import requests
url = "https://api.mountsea.ai/suno/v2/mashupLyrics"
payload = {
"lyrics_a": "<string>",
"lyrics_b": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({lyrics_a: '<string>', lyrics_b: '<string>'})
};
fetch('https://api.mountsea.ai/suno/v2/mashupLyrics', 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/mashupLyrics",
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([
'lyrics_a' => '<string>',
'lyrics_b' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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/mashupLyrics"
payload := strings.NewReader("{\n \"lyrics_a\": \"<string>\",\n \"lyrics_b\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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/mashupLyrics")
.header("Content-Type", "application/json")
.body("{\n \"lyrics_a\": \"<string>\",\n \"lyrics_b\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mountsea.ai/suno/v2/mashupLyrics")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"lyrics_a\": \"<string>\",\n \"lyrics_b\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"taskId": "<string>"
}Generate mashup lyrics by combining lyrics from two songs. Use
[Instrumental] for instrumental tracks. After generating mashup lyrics, use Generate with task=mashup to create the music.
Request Body
string
required
Lyrics of the first song. Use
[Instrumental] if the track is instrumental.string
required
Lyrics of the second song. Use
[Instrumental] if the track is instrumental.Response
string
The task ID. Use this to query task status via Get Task Status.
Example
curl -X POST https://api.mountsea.ai/suno/v2/mashupLyrics \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-api-key" \
-d '{
"lyrics_a": "[Verse 1]\nWalking down the street today\nSunshine lighting up my way\n\n[Chorus]\nFeeling so alive, feeling so free",
"lyrics_b": "[Instrumental]"
}'
const response = await fetch('https://api.mountsea.ai/suno/v2/mashupLyrics', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer your-api-key'
},
body: JSON.stringify({
lyrics_a: '[Verse 1]\nWalking down the street today\nSunshine lighting up my way\n\n[Chorus]\nFeeling so alive, feeling so free',
lyrics_b: '[Instrumental]'
})
});
const data = await response.json();
console.log(data.taskId);
import requests
response = requests.post(
'https://api.mountsea.ai/suno/v2/mashupLyrics',
headers={
'Content-Type': 'application/json',
'Authorization': 'Bearer your-api-key'
},
json={
'lyrics_a': '[Verse 1]\nWalking down the street today\nSunshine lighting up my way\n\n[Chorus]\nFeeling so alive, feeling so free',
'lyrics_b': '[Instrumental]'
}
)
data = response.json()
print(data['taskId'])
Response Example
{
"taskId": "15c257ff-43f7-4678-bd41-202ad6b8488b"
}
Workflow
1
Generate Mashup Lyrics
Call this endpoint with lyrics from two songs to generate combined mashup lyrics.
2
Check Task Status
Poll the Task Status endpoint with the returned
taskId to get the generated mashup lyrics.3
Generate Mashup Music
Use the mashup lyrics with the Generate endpoint (
task=mashup) to create the final mashup track.Use
[Instrumental] as the lyrics value when one of the tracks doesn’t have vocals. This is useful when creating mashups between a vocal track and an instrumental track.⌘I