Skip to main content

Create Music Video

Create a video with visualizations based on your generated music track.

Usage Guide

  • Use this endpoint to turn your audio tracks into visually appealing videos
  • Add artist attribution and branding to your music videos
  • Videos can be shared on social media or embedded in websites

Parameter Details

  • taskId identifies the original music generation task
  • audioId specifies which audio track to visualize when multiple variations exist
  • Optional author and domainName add customized branding to the video

Developer Notes

  • Generated video files are retained for 14 days
  • Videos are optimized for social media sharing
  • Processing time varies based on audio length and server load
Rate limits and quotas are enforced by Apikley and may differ from upstream providers.

OpenAPI

suno-api/suno-api.json post /api/v1/mp4/generate
openapi: 3.0.0
info:
  title: Suno API
  description: Apikley Suno API Documentation
  version: 1.0.0
  contact:
    name: Technical Support
    email: [email protected]
servers:
  - url: https://api.apikley.ru
    description: API Server
security:
  - BearerAuth: []
paths:
  /api/v1/mp4/generate:
    post:
      summary: Create Music Video
      description: >-
        Create a video with visualizations based on your generated music track.


        ### Usage Guide

        - Use this endpoint to turn your audio tracks into visually appealing
        videos

        - Add artist attribution and branding to your music videos

        - Videos can be shared on social media or embedded in websites


        ### Parameter Details

        - `taskId` identifies the original music generation task

        - `audioId` specifies which audio track to visualize when multiple
        variations exist

        - Optional `author` and `domainName` add customized branding to the
        video


        ### Developer Notes

        - Generated video files are retained for 14 days

        - Videos are optimized for social media sharing

        - Processing time varies based on audio length and server load
      operationId: create-music-video
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - taskId
                - audioId
                - callBackUrl
              properties:
                taskId:
                  type: string
                  description: >-
                    Unique identifier of the music generation task. This should
                    be a taskId returned from either the "Generate Music" or
                    "Extend Music" endpoints.
                  example: taskId_774b9aa0422f
                audioId:
                  type: string
                  description: >-
                    Unique identifier of the specific audio track to visualize.
                    This ID is returned in the callback data after music
                    generation completes.
                  example: e231****-****-****-****-****8cadc7dc
                callBackUrl:
                  type: string
                  format: uri
                  description: >-
                    The URL to receive music video generation task completion
                    updates. Required for all music video generation requests.


                    - System will POST task status and results to this URL when
                    video generation completes

                    - Callback includes the generated music video file URL with
                    visual effects and branding

                    - Your callback endpoint should accept POST requests with
                    JSON payload containing the video file location

                    - For detailed callback format and implementation guide, see
                    [Music Video
                    Callbacks](https://docs.apikley.ru/suno-api/create-music-video-callbacks)

                    - Alternatively, use the Get Music Video Details endpoint to
                    poll task status
                  example: https://api.example.com/callback
                author:
                  type: string
                  maxLength: 50
                  description: >-
                    Artist or creator name to display as a signature on the
                    video cover. Maximum 50 characters. This creates attribution
                    for the music creator.
                  example: DJ Electronic
                domainName:
                  type: string
                  maxLength: 50
                  description: >-
                    Website or brand to display as a watermark at the bottom of
                    the video. Maximum 50 characters. Useful for promotional
                    branding or attribution.
                  example: music.example.com
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                allOf:
                  - type: object
                    properties:
                      code:
                        type: integer
                        enum:
                          - 200
                          - 400
                          - 401
                          - 402
                          - 404
                          - 409
                          - 422
                          - 429
                          - 455
                          - 500
                        description: >-
                          Response status code


                          - **200**: Success - Request has been processed
                          successfully

                          - **400**: Format Error - The parameter is not in a
                          valid JSON format

                          - **401**: Unauthorized - Authentication credentials
                          are missing or invalid

                          - **402**: Insufficient Credits - Account does not
                          have enough credits to perform the operation

                          - **404**: Not Found - The requested resource or
                          endpoint does not exist

                          - **409**: Conflict - WAV record already exists

                          - **422**: Validation Error - The request parameters
                          failed validation checks

                          - **429**: Rate Limited - Your call frequency is too
                          high. Please try again later.

                          - **455**: Service Unavailable - System is currently
                          undergoing maintenance

                          - **500**: Server Error - An unexpected error occurred
                          while processing the request

                          Build Failed - Audio mp4 generation failed
                      msg:
                        type: string
                        description: Error message when code != 200
                        example: success
                type: object
                properties:
                  code:
                    type: integer
                    format: int32
                    description: Status code
                    example: 0
                  msg:
                    type: string
                    description: Status message
                    example: ''
                  data:
                    type: object
                    properties:
                      taskId:
                        type: string
                        description: Task ID
                        example: ''
              example:
                code: 0
                msg: ''
                data:
                  taskId: ''
        '500':
          $ref: '#/components/responses/Error'
      callbacks:
        onMp4Generated:
          '{$request.body#/callBackUrl}':
            post:
              summary: MP4 Generation Completion Callback
              description: >-
                When MP4 generation is complete, the system will send a POST
                request to the provided callback URL to notify the result
              requestBody:
                required: true
                content:
                  application/json:
                    schema:
                      allOf:
                        - type: object
                          properties:
                            code:
                              type: integer
                              enum:
                                - 200
                                - 500
                              description: >-
                                Response status code


                                - **200**: Success - Request has been processed
                                successfully

                                - **500**: Internal Error - Please try again
                                later.
                            msg:
                              type: string
                              description: Error message when code != 200
                              example: success
                      type: object
                      required:
                        - code
                        - msg
                        - data
                      properties:
                        code:
                          type: integer
                          description: Status code, 0 indicates success
                          example: 0
                        msg:
                          type: string
                          description: Status message
                          example: msg_9a23a47664f7
                        data:
                          type: object
                          required:
                            - task_id
                            - video_url
                          properties:
                            task_id:
                              type: string
                              description: Unique identifier of the generation task
                              example: task_id_5bbe7721119d
                            video_url:
                              type: string
                              description: Accessible video URL, valid for 14 days
                              example: video_url_847715e66259
              responses:
                '200':
                  description: Callback received successfully
components:
  responses:
    Error:
      description: Server Error
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        All APIs require authentication via Bearer Token.


        Get API Key:

        1. Visit [API Key Management Page](https://app.apikley.ru/keys) to get your
        API Key


        Usage:

        Add to request header:

        Authorization: Bearer APIKLEY_API_KEY


        Note:

        - Keep your API Key secure and do not share it with others

        - If you suspect your API Key has been compromised, reset it immediately
        in the management page


To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.apikley.ru/llms.txt