Suno
Suno New Persona
Use DeerAPI to call the Suno New Persona endpoint with request details, response details, examples, and an OpenAPI playground.
POST
/
suno
/
persona
/
create
cURL
curl https://api.deerapi.com/suno/persona/create \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $DEERAPI_KEY" \
-d '{
"root_clip_id": "82294225-6537-4dfc-adcd-be3b5edaa46c",
"name": "Persona Title",
"description": "Persona description",
"clips": [
"54834687-5e79-4f08-8e14-cf188f15b598"
],
"is_public": true
}'import os
import requests
url = "https://api.deerapi.com/suno/persona/create"
headers = {
"Authorization": "Bearer " + os.environ["DEERAPI_KEY"],
"Content-Type": "application/json",
}
payload = {
"root_clip_id": "82294225-6537-4dfc-adcd-be3b5edaa46c",
"name": "Persona Title",
"description": "Persona description",
"clips": [
"54834687-5e79-4f08-8e14-cf188f15b598"
],
"is_public": true
}
response = requests.post(url, headers=headers, json=payload)
print(response.json())
const response = await fetch("https://api.deerapi.com/suno/persona/create", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.DEERAPI_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"root_clip_id": "82294225-6537-4dfc-adcd-be3b5edaa46c",
"name": "Persona Title",
"description": "Persona description",
"clips": [
"54834687-5e79-4f08-8e14-cf188f15b598"
],
"is_public": true
}),
});
console.log(await response.json());
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.deerapi.com/suno/persona/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([
'root_clip_id' => '82294225-6537-4dfc-adcd-be3b5edaa46c',
'name' => 'Persona Title',
'description' => 'Persona description',
'clips' => [
'54834687-5e79-4f08-8e14-cf188f15b598'
],
'is_public' => true
]),
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.deerapi.com/suno/persona/create"
payload := strings.NewReader("{\n \"root_clip_id\": \"82294225-6537-4dfc-adcd-be3b5edaa46c\",\n \"name\": \"Persona Title\",\n \"description\": \"Persona description\",\n \"clips\": [\n \"54834687-5e79-4f08-8e14-cf188f15b598\"\n ],\n \"is_public\": true\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.deerapi.com/suno/persona/create")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"root_clip_id\": \"82294225-6537-4dfc-adcd-be3b5edaa46c\",\n \"name\": \"Persona Title\",\n \"description\": \"Persona description\",\n \"clips\": [\n \"54834687-5e79-4f08-8e14-cf188f15b598\"\n ],\n \"is_public\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.deerapi.com/suno/persona/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 \"root_clip_id\": \"82294225-6537-4dfc-adcd-be3b5edaa46c\",\n \"name\": \"Persona Title\",\n \"description\": \"Persona description\",\n \"clips\": [\n \"54834687-5e79-4f08-8e14-cf188f15b598\"\n ],\n \"is_public\": true\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image_s3_id": "<string>",
"root_clip_id": "<string>",
"clip": {
"id": "<string>",
"entity_type": "<string>",
"video_url": "<string>",
"audio_url": "<string>",
"image_url": "<string>",
"image_large_url": "<string>",
"major_model_version": "<string>",
"model_name": "<string>",
"metadata": {
"tags": "<string>",
"prompt": "<string>",
"type": "<string>",
"duration": 123,
"refund_credits": true,
"stream": true,
"can_remix": true,
"is_remix": true,
"priority": 123
},
"is_liked": true,
"user_id": "<string>",
"display_name": "<string>",
"handle": "<string>",
"is_handle_updated": true,
"avatar_image_url": "<string>",
"is_trashed": true,
"flag_count": 123,
"display_tags": "<string>",
"created_at": "<string>",
"status": "<string>",
"title": "<string>",
"play_count": 123,
"upvote_count": 123,
"is_public": true,
"allow_comments": true
},
"user_display_name": "<string>",
"user_handle": "<string>",
"user_image_url": "<string>",
"persona_clips": [
{
"clip": {
"id": "<string>",
"entity_type": "<string>",
"video_url": "<string>",
"audio_url": "<string>",
"image_url": "<string>",
"image_large_url": "<string>",
"major_model_version": "<string>",
"model_name": "<string>",
"metadata": {
"tags": "<string>",
"prompt": "<string>",
"type": "<string>",
"duration": 123,
"refund_credits": true,
"stream": true,
"can_remix": true,
"is_remix": true,
"priority": 123
},
"is_liked": true,
"user_id": "<string>",
"display_name": "<string>",
"handle": "<string>",
"is_handle_updated": true,
"avatar_image_url": "<string>",
"is_trashed": true,
"flag_count": 123,
"display_tags": "<string>",
"created_at": "<string>",
"status": "<string>",
"title": "<string>",
"play_count": 123,
"upvote_count": 123,
"is_public": true,
"allow_comments": true
},
"id": 123
}
],
"is_suno_persona": true,
"is_trashed": true,
"is_owned": true,
"is_public": true,
"is_public_approved": true,
"is_loved": true,
"upvote_count": 123,
"clip_count": 123
}Overview
Use this endpoint to call the Suno New Persona workflow through DeerAPI. The API reference on this page shows the request schema, response schema, authentication requirements, and runnable examples for the configured endpoint.Before you start
Use the DeerAPI base URL and pass your API Key in theAuthorization header:
https://api.deerapi.com
Authorization: Bearer $DEERAPI_KEY
Model selection
Choose a current model ID from the live pricing page. Model availability changes over time, so avoid copying a model ID from an old project without checking the live list first.Implementation notes
- Use the OpenAPI playground for the exact request fields accepted by this endpoint.
- Keep API Keys on the server side when you build production applications.
- Log the request ID from failed calls so support can investigate the request.
- Retry
429,500, and503responses with exponential backoff.
Authorizations
Use a DeerAPI API Key as a Bearer token.
Body
application/json
Response
200 - application/json
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I
cURL
curl https://api.deerapi.com/suno/persona/create \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $DEERAPI_KEY" \
-d '{
"root_clip_id": "82294225-6537-4dfc-adcd-be3b5edaa46c",
"name": "Persona Title",
"description": "Persona description",
"clips": [
"54834687-5e79-4f08-8e14-cf188f15b598"
],
"is_public": true
}'import os
import requests
url = "https://api.deerapi.com/suno/persona/create"
headers = {
"Authorization": "Bearer " + os.environ["DEERAPI_KEY"],
"Content-Type": "application/json",
}
payload = {
"root_clip_id": "82294225-6537-4dfc-adcd-be3b5edaa46c",
"name": "Persona Title",
"description": "Persona description",
"clips": [
"54834687-5e79-4f08-8e14-cf188f15b598"
],
"is_public": true
}
response = requests.post(url, headers=headers, json=payload)
print(response.json())
const response = await fetch("https://api.deerapi.com/suno/persona/create", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.DEERAPI_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
"root_clip_id": "82294225-6537-4dfc-adcd-be3b5edaa46c",
"name": "Persona Title",
"description": "Persona description",
"clips": [
"54834687-5e79-4f08-8e14-cf188f15b598"
],
"is_public": true
}),
});
console.log(await response.json());
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.deerapi.com/suno/persona/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([
'root_clip_id' => '82294225-6537-4dfc-adcd-be3b5edaa46c',
'name' => 'Persona Title',
'description' => 'Persona description',
'clips' => [
'54834687-5e79-4f08-8e14-cf188f15b598'
],
'is_public' => true
]),
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.deerapi.com/suno/persona/create"
payload := strings.NewReader("{\n \"root_clip_id\": \"82294225-6537-4dfc-adcd-be3b5edaa46c\",\n \"name\": \"Persona Title\",\n \"description\": \"Persona description\",\n \"clips\": [\n \"54834687-5e79-4f08-8e14-cf188f15b598\"\n ],\n \"is_public\": true\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.deerapi.com/suno/persona/create")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"root_clip_id\": \"82294225-6537-4dfc-adcd-be3b5edaa46c\",\n \"name\": \"Persona Title\",\n \"description\": \"Persona description\",\n \"clips\": [\n \"54834687-5e79-4f08-8e14-cf188f15b598\"\n ],\n \"is_public\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.deerapi.com/suno/persona/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 \"root_clip_id\": \"82294225-6537-4dfc-adcd-be3b5edaa46c\",\n \"name\": \"Persona Title\",\n \"description\": \"Persona description\",\n \"clips\": [\n \"54834687-5e79-4f08-8e14-cf188f15b598\"\n ],\n \"is_public\": true\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image_s3_id": "<string>",
"root_clip_id": "<string>",
"clip": {
"id": "<string>",
"entity_type": "<string>",
"video_url": "<string>",
"audio_url": "<string>",
"image_url": "<string>",
"image_large_url": "<string>",
"major_model_version": "<string>",
"model_name": "<string>",
"metadata": {
"tags": "<string>",
"prompt": "<string>",
"type": "<string>",
"duration": 123,
"refund_credits": true,
"stream": true,
"can_remix": true,
"is_remix": true,
"priority": 123
},
"is_liked": true,
"user_id": "<string>",
"display_name": "<string>",
"handle": "<string>",
"is_handle_updated": true,
"avatar_image_url": "<string>",
"is_trashed": true,
"flag_count": 123,
"display_tags": "<string>",
"created_at": "<string>",
"status": "<string>",
"title": "<string>",
"play_count": 123,
"upvote_count": 123,
"is_public": true,
"allow_comments": true
},
"user_display_name": "<string>",
"user_handle": "<string>",
"user_image_url": "<string>",
"persona_clips": [
{
"clip": {
"id": "<string>",
"entity_type": "<string>",
"video_url": "<string>",
"audio_url": "<string>",
"image_url": "<string>",
"image_large_url": "<string>",
"major_model_version": "<string>",
"model_name": "<string>",
"metadata": {
"tags": "<string>",
"prompt": "<string>",
"type": "<string>",
"duration": 123,
"refund_credits": true,
"stream": true,
"can_remix": true,
"is_remix": true,
"priority": 123
},
"is_liked": true,
"user_id": "<string>",
"display_name": "<string>",
"handle": "<string>",
"is_handle_updated": true,
"avatar_image_url": "<string>",
"is_trashed": true,
"flag_count": 123,
"display_tags": "<string>",
"created_at": "<string>",
"status": "<string>",
"title": "<string>",
"play_count": 123,
"upvote_count": 123,
"is_public": true,
"allow_comments": true
},
"id": 123
}
],
"is_suno_persona": true,
"is_trashed": true,
"is_owned": true,
"is_public": true,
"is_public_approved": true,
"is_loved": true,
"upvote_count": 123,
"clip_count": 123
}