Skip to main content
GET
/
distribution
/
deliveries
/
{delivery_id}
Get delivery status
curl --request GET \
  --url https://varco-{partner}.musixmatch.com/distribution/deliveries/{delivery_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": {
    "body": {
      "delivery": {
        "delivery_id": 123456,
        "status": "success",
        "tracks": [
          {
            "isrc": "USIR20300001",
            "track_title": "Track One",
            "album_title": "My Album",
            "album_upc": "123456789012",
            "release_date": "2025-10-15",
            "status": "success",
            "commontrack_id": 123456
          },
          {
            "isrc": "USIR20300002",
            "track_title": "Track Two",
            "album_title": "My Album",
            "album_upc": "123456789012",
            "release_date": "2025-10-15",
            "status": "success",
            "commontrack_id": 100002
          }
        ]
      }
    },
    "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

delivery_id
integer
required

The delivery identifier returned by POST /distribution/deliveries

Response

Current delivery status.

message
object