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

# Submit lyrics

> Submits plain-text lyrics for a track identified by ISRC. Returns a `lyrics_request_id` to track processing status. The output is plain-text lyrics indexed in the Musixmatch catalog.



## OpenAPI

````yaml /enterprises/distribution/openapi.json post /distribution/v1/lyrics
openapi: 3.1.0
info:
  title: Musixmatch Distribution API
  version: 1.0.0
  description: >-
    API for music distributors to submit releases and lyrics to the Musixmatch
    catalog.
servers:
  - url: https://varco-{partner}.musixmatch.com
    description: >-
      Replace {partner} with the identifier assigned to your organization during
      onboarding
    variables:
      partner:
        default: partner
        description: Identifier assigned to your organization during onboarding
security:
  - bearerAuth: []
paths:
  /distribution/v1/lyrics:
    post:
      tags:
        - Lyrics
      summary: Submit lyrics
      description: >-
        Submits plain-text lyrics for a track identified by ISRC. Returns a
        `lyrics_request_id` to track processing status. The output is plain-text
        lyrics indexed in the Musixmatch catalog.
      operationId: submitLyrics
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitLyricsRequest'
            example:
              musixmatch_user_id: mxm:123456789012345678901
              isrc: GBAAA9100070
              lyrics: |-
                Line one
                Line two
                Line three
      responses:
        '202':
          description: Lyrics submission accepted for processing.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LyricsSubmitEnvelope'
              example:
                message: lyrics submission accepted
                data:
                  lyrics:
                    lyrics_request_id: 123456
                    status: pending
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '502':
          $ref: '#/components/responses/BadGateway'
components:
  schemas:
    SubmitLyricsRequest:
      type: object
      required:
        - musixmatch_user_id
        - isrc
        - lyrics
      properties:
        musixmatch_user_id:
          type: string
          description: >-
            The Musixmatch user ID of the artist, obtained via token
            introspection of the user's access token
        isrc:
          type: string
          pattern: ^[A-Z]{2}-?[A-Z\d]{3}-?\d{2}-?\d{5}$
          description: International Standard Recording Code (ISRC) of the track
        lyrics:
          type: string
          description: Plain-text lyrics as sung in the recording
    LyricsSubmitEnvelope:
      type: object
      properties:
        message:
          type: string
          description: Descriptive message of performed operation
        data:
          type: object
          properties:
            lyrics:
              type: object
              properties:
                lyrics_request_id:
                  type: integer
                  description: >-
                    Unique identifier for this lyrics submission, used to poll
                    status
                status:
                  type: string
                  enum:
                    - pending
                    - progress
                    - success
                    - failure
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: Descriptive message of what has failed
        data:
          type: object
          properties:
            error:
              type: object
              properties:
                code:
                  oneOf:
                    - type: string
                    - type: number
                  description: Application-level error code
                namespace:
                  type: string
                  description: Application-level error namespace
                extraData:
                  description: Additional error context
  responses:
    BadRequest:
      description: Bad request — invalid or missing parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Unauthorized — missing or invalid Bearer token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    BadGateway:
      description: >-
        Bad gateway — upstream service call failed or returned an unexpected
        response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Access token obtained via the Client Credentials OAuth 2.0 flow at
        https://connect.musixmatch.com/oauth/token

````