> ## 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.

# Get transcription status

> Returns the current status of a transcription request. When `status` is `success`, the response includes the AI-generated plain-text lyrics.



## OpenAPI

````yaml /enterprises/distribution/openapi.json get /distribution/v1/transcriptions/{transcription_request_id}
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/transcriptions/{transcription_request_id}:
    get:
      tags:
        - Transcriptions
      summary: Get transcription status
      description: >-
        Returns the current status of a transcription request. When `status` is
        `success`, the response includes the AI-generated plain-text lyrics.
      operationId: getTranscription
      parameters:
        - $ref: '#/components/parameters/transcription_request_id'
        - $ref: '#/components/parameters/musixmatch_user_id'
      responses:
        '200':
          description: Current transcription status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptionStatusEnvelope'
              examples:
                success:
                  value:
                    message: transcription status retrieved
                    data:
                      transcription:
                        transcription_request_id: 123456
                        status: success
                        lyrics: |-
                          Line one
                          Line two
                          Line three
                progress:
                  value:
                    message: transcription status retrieved
                    data:
                      transcription:
                        transcription_request_id: 123456
                        status: progress
                failure:
                  value:
                    message: transcription status retrieved
                    data:
                      transcription:
                        transcription_request_id: 123456
                        status: failure
                        error: No audio found for this ISRC. Submit a delivery first.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: Forbidden - provided user id not matching request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                message: user id not matching with request
                data:
                  error:
                    code: 403
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    transcription_request_id:
      name: transcription_request_id
      in: path
      required: true
      schema:
        type: integer
      description: >-
        The transcription request identifier returned by `POST
        /distribution/v1/transcriptions`
    musixmatch_user_id:
      name: musixmatch_user_id
      in: query
      required: true
      schema:
        type: string
      description: >-
        The Musixmatch user ID of the artist, obtained via token introspection
        of the user's access token
  schemas:
    TranscriptionStatusEnvelope:
      type: object
      properties:
        message:
          type: string
          description: Descriptive message of performed operation
        data:
          type: object
          properties:
            transcription:
              type: object
              properties:
                transcription_request_id:
                  type: integer
                  description: Unique identifier for this transcription request
                status:
                  type: string
                  enum:
                    - pending
                    - progress
                    - success
                    - failure
                lyrics:
                  type: string
                  description: >-
                    AI-generated plain-text lyrics, present when `status` is
                    `success`
                error:
                  type: string
                  description: Error description when `status` is `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:
    Unauthorized:
      description: Unauthorized — missing or invalid Bearer token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Not found
      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

````