Skip to main content
POST
/
suno
/
v2
/
persona
create persona
curl --request POST \
  --url https://api.mountsea.ai/suno/v2/persona \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "clip_id": "<string>",
  "is_public": true,
  "name": "My Persona",
  "description": "<string>",
  "image_s3_id": "data:image/png;base64,iVBORw0K**** base64编码"
}
'
{}

create persona

Authorizations

Authorization
string
header
required

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

Body

application/json
clip_id
string
required

The clip_id to create persona.

is_public
boolean
default:true
required

Whether the persona is public.

Example:

true

name
string
required

The name of the persona.

Example:

"My Persona"

description
string

The description of the persona.

image_s3_id
string

The image of the persona.

Example:

"data:image/png;base64,iVBORw0K**** base64编码"

Response

201 - application/json

The response is of type object.