> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goenhance.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Suno Lyrics

> Write song lyrics with `[Verse]` / `[Chorus]` markers from a short description. Usually returns 2 to 3 variations; pass one to `suno-v6` in custom mode as `lyrics`.

**Pricing** (per request):

| Option | Tokens | USD |
|---|---|---|
| Per request | 0.13 | $0.0026 |

**Result**: `json` holds one item per variation: `{ "type": "json", "value": { "title": "Starry Night Dreams", "text": "[Verse]\n..." } }`.



## OpenAPI

````yaml api-reference/audio-generations/openapi-suno-lyrics.json POST /api/v1/audio/generations
openapi: 3.1.0
info:
  title: GoEnhance API - Suno Lyrics
  description: Write song lyrics from a short description.
  version: 1.0.0
servers:
  - url: https://api.goenhance.ai
security: []
paths:
  /api/v1/audio/generations:
    post:
      tags:
        - AudioGenerations
      summary: Suno Lyrics
      description: >-
        Write song lyrics with `[Verse]` / `[Chorus]` markers from a short
        description. Usually returns 2 to 3 variations; pass one to `suno-v6` in
        custom mode as `lyrics`.


        **Pricing** (per request):


        | Option | Tokens | USD |

        |---|---|---|

        | Per request | 0.13 | $0.0026 |


        **Result**: `json` holds one item per variation: `{ "type": "json",
        "value": { "title": "Starry Night Dreams", "text": "[Verse]\n..." } }`.
      parameters:
        - name: Authorization
          in: header
          description: ''
          required: false
          example: '{{Authorization}}'
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                model:
                  type: string
                  enum:
                    - suno-lyrics
                  description: Model name. Must be `suno-lyrics`.
                prompt:
                  type: string
                  maxLength: 3000
                  description: >-
                    Required. Theme, mood or story of the song. Max 3000
                    characters.
                custom_callback_url:
                  type: string
                  format: uri
                  description: >-
                    Optional. A publicly accessible HTTPS URL. When the task
                    status changes (processing / success / failed), GoEnhance
                    sends a POST request to this URL. The request body is
                    identical to the response of GET /api/v1/jobs/detail. If
                    your server does not respond with HTTP 200, the notification
                    is retried up to 3 times, with a 3-second timeout per
                    attempt.
                  example: https://your-server.com/goenhance/callback
              required:
                - model
                - prompt
            example:
              model: suno-lyrics
              prompt: A hopeful song about moving to a new city
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                  data:
                    type: object
                    properties:
                      img_uuid:
                        type: string
                      cost:
                        type: number
                        description: >-
                          Tokens deducted for this request. This is the amount
                          actually charged, so it already reflects any discount
                          active on your account and can be lower than the
                          listed price. Tokens are deducted when the task is
                          accepted, and refunded automatically if the generation
                          ends in failure.
                        example: 0.13
                    required:
                      - img_uuid
                      - cost
                required:
                  - code
                  - msg
                  - data
              examples:
                '1':
                  summary: Success
                  value:
                    code: 0
                    msg: Success
                    data:
                      img_uuid: c12b656c-747a-44fd-9c80-add79b0c52d5
                      cost: 0.13
                '2':
                  summary: Insufficient tokens
                  value:
                    code: 100
                    msg: tokens is not enough
                quota:
                  summary: API key quota exceeded
                  value:
                    code: 101
                    msg: 'API key quota exceeded: 4990 of 5000 tokens used (monthly)'
                bad:
                  summary: Invalid parameters
                  value:
                    code: -1
                    msg: >-
                      lyrics is required when custom_mode is true and
                      instrumental is false
          headers: {}
        '401':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
          headers: {}
      deprecated: false

````