Skip to main content
POST
/
distribution
/
deliveries
/
files
Upload a release file
curl --request POST \
  --url https://varco-{partner}.musixmatch.com/distribution/deliveries/files \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "musixmatch_user_id": "mxm:123456789012345678901"
}
'
{
  "message": {
    "body": {
      "file": {
        "file_id": 123456,
        "upload_url": "https://storage.example.com/uploads/123456?signature=..."
      }
    },
    "header": {
      "status_code": 201,
      "execute_time": 0.06
    }
  }
}

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

Body

application/json
musixmatch_user_id
string
required

The Musixmatch user ID of the artist, obtained via token introspection of the user's access token

Response

Upload slot created. Use upload_url to upload the ZIP via HTTP PUT.

message
object