Skip to main content
GET
/
distribution
/
lyrics
/
{lyrics_request_id}
Get lyrics status
curl --request GET \
  --url https://varco-{partner}.musixmatch.com/distribution/lyrics/{lyrics_request_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": {
    "body": {
      "lyrics": {
        "lyrics_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

lyrics_request_id
integer
required

The lyrics request identifier returned by POST /distribution/lyrics

Response

Current lyrics status.

message
object