Skip to main content
POST
/
suno
/
v2
/
lyrics
generate lyrics
curl --request POST \
  --url https://api.mountsea.ai/suno/v2/lyrics \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lyrics_model": "default",
  "prompt": "A happy song about a girl and a boy."
}
'
{
  "taskId": "15c257ff-43f7-4678-bd41-202ad6b8488b"
}

generate lyrics

generate lyrics

Authorizations

Authorization
string
header
required

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

Body

application/json
lyrics_model
enum<string>
required

The model to use for generating lyrics.

Available options:
default,
remi-v1
Example:

"default"

prompt
string
required

The prompt to use for generating lyrics.

Example:

"A happy song about a girl and a boy."

Response

201 - application/json
taskId
string
required

task id. Use this id to query task status.

Example:

"15c257ff-43f7-4678-bd41-202ad6b8488b"