create inspiration playlist
curl --request POST \
--url https://api.mountsea.ai/suno/v2/playlist/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"clip_ids": [
"30c08405-8be7-4bbf-9b50-f72250fd1531",
"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed"
],
"name": "My Inspiration Set"
}
'import requests
url = "https://api.mountsea.ai/suno/v2/playlist/create"
payload = {
"clip_ids": ["30c08405-8be7-4bbf-9b50-f72250fd1531", "93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed"],
"name": "My Inspiration Set"
}
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({
clip_ids: ['30c08405-8be7-4bbf-9b50-f72250fd1531', '93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed'],
name: 'My Inspiration Set'
})
};
fetch('https://api.mountsea.ai/suno/v2/playlist/create', 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/playlist/create",
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([
'clip_ids' => [
'30c08405-8be7-4bbf-9b50-f72250fd1531',
'93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed'
],
'name' => 'My Inspiration Set'
]),
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/playlist/create"
payload := strings.NewReader("{\n \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed\"\n ],\n \"name\": \"My Inspiration Set\"\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/playlist/create")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed\"\n ],\n \"name\": \"My Inspiration Set\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mountsea.ai/suno/v2/playlist/create")
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 \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed\"\n ],\n \"name\": \"My Inspiration Set\"\n}"
response = http.request(request)
puts response.read_body{
"playlist_id": "119573ff-8e48-4fe6-9029-39c76c9a5597"
}{
"playlist_id": "119573ff-8e48-4fe6-9029-39c76c9a5597"
}Suno
Create Inspiration Playlist
Create a Suno playlist and bind the owning account (Step 1 of Inspiration)
POST
/
suno
/
v2
/
playlist
/
create
create inspiration playlist
curl --request POST \
--url https://api.mountsea.ai/suno/v2/playlist/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"clip_ids": [
"30c08405-8be7-4bbf-9b50-f72250fd1531",
"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed"
],
"name": "My Inspiration Set"
}
'import requests
url = "https://api.mountsea.ai/suno/v2/playlist/create"
payload = {
"clip_ids": ["30c08405-8be7-4bbf-9b50-f72250fd1531", "93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed"],
"name": "My Inspiration Set"
}
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({
clip_ids: ['30c08405-8be7-4bbf-9b50-f72250fd1531', '93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed'],
name: 'My Inspiration Set'
})
};
fetch('https://api.mountsea.ai/suno/v2/playlist/create', 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/playlist/create",
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([
'clip_ids' => [
'30c08405-8be7-4bbf-9b50-f72250fd1531',
'93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed'
],
'name' => 'My Inspiration Set'
]),
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/playlist/create"
payload := strings.NewReader("{\n \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed\"\n ],\n \"name\": \"My Inspiration Set\"\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/playlist/create")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed\"\n ],\n \"name\": \"My Inspiration Set\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mountsea.ai/suno/v2/playlist/create")
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 \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed\"\n ],\n \"name\": \"My Inspiration Set\"\n}"
response = http.request(request)
puts response.read_body{
"playlist_id": "119573ff-8e48-4fe6-9029-39c76c9a5597"
}{
"playlist_id": "119573ff-8e48-4fe6-9029-39c76c9a5597"
}Creates a Suno playlist and adds 1–4 inspiration clips atomically on one account. The account binding is stored so a later
task=inspiration generate call uses the same account automatically.
Synchronous — returns
playlist_id in the response body (HTTP 200/201). No task polling required.All
clip_ids must belong to the same Suno account. This is the account anchor for the whole Inspiration workflow.This is Step 1 of the Inspiration workflow. Next: Generate with
task=inspiration and playlist_id.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Inspiration clip IDs (1–4). All must belong to the same Suno account. Used as account anchor: the playlist will be created on the account that owns these clips, and all clips will be added to the playlist atomically.
Required array length:
1 - 4 elementsExample:
[
"30c08405-8be7-4bbf-9b50-f72250fd1531",
"93d2bfe9-c6d4-42cd-88fc-ee508d4fa6ed"
]
Playlist display name. Defaults to "Untitled".
Example:
"My Inspiration Set"
Response
Suno playlist ID. Pass this to /generate as playlist_id when using task=inspiration.
Example:
"119573ff-8e48-4fe6-9029-39c76c9a5597"
⌘I