Generate a lyric

POST /suno/generate_lyric
application/json

Body Required

Responses

  • 200 application/json

    Default Response

    Hide response attributes Show response attributes object
    • status boolean

      Default value is true.

    • message string

      Default value is success.

    • result object

      Additional properties are allowed.

      Hide result attributes Show result attributes object
  • 400 application/json

    Invalid request error

    Hide response attributes Show response attributes object
  • 401 application/json

    Authorization error

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
POST /suno/generate_lyric
curl \
 -X POST https://api.itsrose.rest/suno/generate_lyric \
 -H "Content-Type: application/json" \
 -d '{"prompt":"ItsRose API, cloud in the sky, female groups medieval acoustic guitar only"}'
Request examples
{
  "prompt": "ItsRose API, cloud in the sky, female groups medieval acoustic guitar only"
}
Response examples (200)
{
  "status": true,
  "message": "success",
  "result": {
    "title": "string",
    "lyric": "string"
  }
}
Response examples (400)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (401)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (500)
{
  "status": false,
  "message": "string",
  "result": {}
}