> ## 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.

# Get artist claim status

> Returns the verified artist identifiers associated with a distributor user. Use this to confirm that a claim has been successfully processed.



## OpenAPI

````yaml /enterprises/distribution/openapi.json get /distribution/v1/artist/claim/{partner_user_id}
openapi: 3.1.0
info:
  title: Musixmatch Distribution API
  version: 1.0.0
  description: >-
    API for music distributors to submit releases and lyrics to the Musixmatch
    catalog.
servers:
  - url: https://varco-{partner}.musixmatch.com
    description: >-
      Replace {partner} with the identifier assigned to your organization during
      onboarding
    variables:
      partner:
        default: partner
        description: Identifier assigned to your organization during onboarding
security:
  - bearerAuth: []
paths:
  /distribution/v1/artist/claim/{partner_user_id}:
    get:
      tags:
        - Claims
      summary: Get artist claim status
      description: >-
        Returns the verified artist identifiers associated with a distributor
        user. Use this to confirm that a claim has been successfully processed.
      operationId: getArtistClaim
      parameters:
        - $ref: '#/components/parameters/partner_user_id'
        - name: trustee
          in: query
          required: true
          schema:
            type: string
          description: The trustee identifier associated with the claim
      responses:
        '200':
          description: Verified artist identifiers for the given distributor user.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArtistClaimStatusEnvelope'
              example:
                message: artist claim status retrieved
                data:
                  artist_claim:
                    claim_id_list:
                      - partner_artist_id: '123456'
                        partner_user_id: '123456'
                        spotify_artist_id: 4Z8W4fKeB5YxbusRsdQVPb
                        itunes_artist_id: '909253'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '502':
          $ref: '#/components/responses/BadGateway'
components:
  parameters:
    partner_user_id:
      name: partner_user_id
      in: path
      required: true
      schema:
        type: string
      description: The partner's internal user identifier
  schemas:
    ArtistClaimStatusEnvelope:
      type: object
      properties:
        message:
          type: string
          description: Descriptive message of performed operation
        data:
          type: object
          properties:
            artist_claim:
              type: object
              properties:
                claim_id_list:
                  type: array
                  items:
                    type: object
                    properties:
                      partner_artist_id:
                        type: string
                      partner_user_id:
                        type: string
                      itunes_artist_id:
                        type: string
                      spotify_artist_id:
                        type: string
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: Descriptive message of what has failed
        data:
          type: object
          properties:
            error:
              type: object
              properties:
                code:
                  oneOf:
                    - type: string
                    - type: number
                  description: Application-level error code
                namespace:
                  type: string
                  description: Application-level error namespace
                extraData:
                  description: Additional error context
  responses:
    Unauthorized:
      description: Unauthorized — missing or invalid Bearer token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    BadGateway:
      description: >-
        Bad gateway — upstream service call failed or returned an unexpected
        response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Access token obtained via the Client Credentials OAuth 2.0 flow at
        https://connect.musixmatch.com/oauth/token

````