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

# Boost Music Style

> Generate enhanced music style descriptions using AI

<Tip>
  1. After submission, a `task_id` will be returned. If you provided a `callback_url`, when the task status becomes `finished` or `failed`, a POST request will be sent to the `callback_url`.
  2. Regardless of whether `callback_url` is provided, you can retrieve the response result through the unified [Query Music Detail](/api-manual/music-series/query-music-detail) endpoint.
</Tip>

## Usage Guide

* This endpoint generates enhanced music style descriptions based on your input
* Provide concise keywords describing genre, mood, or musical characteristics
* The AI will expand and enrich your style description for better music generation results

## Parameter Details

* `content` (required): A brief description of the desired music style
  * Use comma-separated keywords for best results
  * Include genre (Pop, Jazz, Rock), mood (Mysterious, Upbeat), or instruments (Piano, Guitar)

## Developer Notes

* Use the generated style descriptions with the Generate Music endpoint for better results
* Keep input descriptions concise and clear for optimal enhancement


## OpenAPI

````yaml /api-manual/music-series/boost-music-style.json POST /api/generate/submit
openapi: 3.0.0
info:
  title: Vidgo API - Boost Music Style API
  description: Generate enhanced music style descriptions using AI
  version: 1.0.0
servers:
  - url: https://api.vidgo.ai
    description: Production server
security:
  - BearerAuth: []
paths:
  /api/generate/submit:
    post:
      tags:
        - Music Style
      summary: Submit Boost Music Style Task
      description: Generate enhanced music style descriptions based on your input
      operationId: submitBoostMusicStyleTask
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitRequest'
            examples:
              pop-mysterious:
                summary: Pop and Mysterious Style
                value:
                  model: boost-music-style
                  callback_url: https://your-domain.com/callback
                  input:
                    content: Pop, Mysterious
              cinematic-epic:
                summary: Cinematic Epic Style
                value:
                  model: boost-music-style
                  callback_url: https://your-domain.com/callback
                  input:
                    content: Cinematic, Epic, Orchestral
      responses:
        '200':
          description: Task submitted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmitResponse'
components:
  schemas:
    SubmitRequest:
      type: object
      required:
        - model
        - input
      properties:
        model:
          type: string
          description: |-
            API model identifier.

            Must be `boost-music-style` for this endpoint.
          enum:
            - boost-music-style
          example: boost-music-style
        callback_url:
          type: string
          format: uri
          description: Webhook callback URL for result notifications
          example: https://your-domain.com/callback
        input:
          type: object
          required:
            - content
          description: Input parameters for style generation
          properties:
            content:
              type: string
              description: >-
                Style description.


                Describe in concise and clear language the music style you
                expect to generate.


                Can include genre, mood, instruments, or any musical
                characteristics.
              example: Pop, Mysterious
    SubmitResponse:
      type: object
      required:
        - code
        - data
      properties:
        code:
          type: integer
          example: 200
          description: HTTP status code
        data:
          type: object
          required:
            - task_id
            - status
            - created_time
          properties:
            task_id:
              type: string
              example: task-unified-1757165031-uyujaw3d
              description: Unique task identifier for status tracking
            status:
              type: string
              enum:
                - not_started
              example: not_started
              description: Initial task status
            created_time:
              type: string
              format: date-time
              example: '2025-11-12T10:30:00'
              description: ISO 8601 timestamp when the task was created
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        All API endpoints require Bearer Token authentication


        Get your API Key:


        Visit the [API Key Management
        Page](https://vidgo.ai/apis/dashboard/api-key) to get your API Key


        Add it to the request header:


        ```

        Authorization: Bearer VIDGO_API_KEY

        ```

````