Skip to main content
GET
/
distribution
/
transcriptions
/
{transcription_request_id}
Get transcription status
curl --request GET \
  --url https://varco-{partner}.musixmatch.com/distribution/transcriptions/{transcription_request_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": {
    "body": {
      "transcription": {
        "transcription_request_id": 123456,
        "status": "success",
        "lyrics": "Line one\nLine two\nLine three"
      }
    },
    "header": {
      "status_code": 200,
      "execute_time": 0.03
    }
  }
}

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.

Authorizations

Authorization
string
header
required

Access token obtained via the Client Credentials OAuth 2.0 flow at https://connect.musixmatch.com/oauth/token

Path Parameters

transcription_request_id
integer
required

The transcription request identifier returned by POST /distribution/transcriptions

Response

Current transcription status.

message
object