Skip to main content
POST
/
suno
/
v2
/
playlist
/
addClips
add more clips to an existing playlist
curl --request POST \
  --url https://api.mountsea.ai/suno/v2/playlist/addClips \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "playlist_id": "119573ff-8e48-4fe6-9029-39c76c9a5597",
  "clip_id": "30c08405-8be7-4bbf-9b50-f72250fd1531",
  "clip_ids": [
    "30c08405-8be7-4bbf-9b50-f72250fd1531"
  ]
}
'
import requests

url = "https://api.mountsea.ai/suno/v2/playlist/addClips"

payload = {
"playlist_id": "119573ff-8e48-4fe6-9029-39c76c9a5597",
"clip_id": "30c08405-8be7-4bbf-9b50-f72250fd1531",
"clip_ids": ["30c08405-8be7-4bbf-9b50-f72250fd1531"]
}
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({
playlist_id: '119573ff-8e48-4fe6-9029-39c76c9a5597',
clip_id: '30c08405-8be7-4bbf-9b50-f72250fd1531',
clip_ids: ['30c08405-8be7-4bbf-9b50-f72250fd1531']
})
};

fetch('https://api.mountsea.ai/suno/v2/playlist/addClips', 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/addClips",
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([
'playlist_id' => '119573ff-8e48-4fe6-9029-39c76c9a5597',
'clip_id' => '30c08405-8be7-4bbf-9b50-f72250fd1531',
'clip_ids' => [
'30c08405-8be7-4bbf-9b50-f72250fd1531'
]
]),
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/addClips"

payload := strings.NewReader("{\n \"playlist_id\": \"119573ff-8e48-4fe6-9029-39c76c9a5597\",\n \"clip_id\": \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\"\n ]\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/addClips")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"playlist_id\": \"119573ff-8e48-4fe6-9029-39c76c9a5597\",\n \"clip_id\": \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\"\n ]\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.mountsea.ai/suno/v2/playlist/addClips")

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 \"playlist_id\": \"119573ff-8e48-4fe6-9029-39c76c9a5597\",\n \"clip_id\": \"30c08405-8be7-4bbf-9b50-f72250fd1531\",\n \"clip_ids\": [\n \"30c08405-8be7-4bbf-9b50-f72250fd1531\"\n ]\n}"

response = http.request(request)
puts response.read_body
Adds 1–4 more clips to a playlist created by Create Inspiration Playlist.
Synchronous — returns {} on success (HTTP 201). No task polling required.
FieldRequiredDescription
playlist_idYesID from /playlist/create
clip_idYesOne of the original inspiration clips (account resolution)
clip_idsYes1–4 clip IDs to add (same account as Step 1)
Part of the Inspiration workflow. Skip this step if Step 1 already included all clips you need.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
playlist_id
string
required

Playlist ID returned by /playlist/create.

Example:

"119573ff-8e48-4fe6-9029-39c76c9a5597"

clip_id
string
required

One of the original inspiration clip IDs (used to resolve the account — must match the account used in /playlist/create).

Example:

"30c08405-8be7-4bbf-9b50-f72250fd1531"

clip_ids
string[]
required

Additional clip IDs to add to the playlist (1–4, all must belong to the same Suno account).

Required array length: 1 - 4 elements
Example:
["30c08405-8be7-4bbf-9b50-f72250fd1531"]

Response

201 - undefined