Skip to main content
POST
/
distribution
/
artist
/
claim
Claim an artist
curl --request POST \
  --url https://varco-{partner}.musixmatch.com/distribution/artist/claim \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "musixmatch_user_id": "mxm:123456789012345678901",
  "partner_user_id": "123456",
  "artist": [
    {
      "spotify_artist_id": "4Z8W4fKeB5YxbusRsdQVPb",
      "partner_artist_id": "123456"
    }
  ]
}
'
{
  "message": {
    "body": {
      "artist_claim": {
        "claim_id_list": [
          "clm_abc123",
          "clm_def456"
        ]
      }
    },
    "header": {
      "status_code": 201,
      "execute_time": 0.05
    }
  }
}

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 obtained via token introspection

partner_user_id
string
required

The partner's internal user identifier

artist
object[]
required

List of artist identifiers. At least one identifier per item is required.

Minimum array length: 1

Response

Claim submitted.

message
object