> ## 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 delivery status

> Returns the current processing status of a delivery and the per-track import status. Poll this endpoint after calling `POST /distribution/v1/deliveries` to track progress. `commontrack_id` is only present on tracks whose `status` is `success`.



## OpenAPI

````yaml /enterprises/distribution/openapi.json get /distribution/v1/deliveries/{delivery_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/deliveries/{delivery_id}:
    get:
      tags:
        - Deliveries
      summary: Get delivery status
      description: >-
        Returns the current processing status of a delivery and the per-track
        import status. Poll this endpoint after calling `POST
        /distribution/v1/deliveries` to track progress. `commontrack_id` is only
        present on tracks whose `status` is `success`.
      operationId: getDelivery
      parameters:
        - $ref: '#/components/parameters/delivery_id'
        - $ref: '#/components/parameters/musixmatch_user_id'
      responses:
        '200':
          description: Current delivery status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeliveryStatusEnvelope'
              examples:
                success:
                  value:
                    message: delivery status retrieved
                    data:
                      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
                progress:
                  value:
                    message: delivery status retrieved
                    data:
                      delivery:
                        delivery_id: 123456
                        status: progress
                        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: progress
                failure:
                  value:
                    message: delivery status retrieved
                    data:
                      delivery:
                        delivery_id: 123456
                        status: failure
                        error: 'ERN parsing failed: missing ISRC on track 2'
                        tracks: []
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: Forbidden - provided user id not matching request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                message: user id not matching with request
                data:
                  error:
                    code: 403
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    delivery_id:
      name: delivery_id
      in: path
      required: true
      schema:
        type: integer
      description: The delivery identifier returned by `POST /distribution/v1/deliveries`
    musixmatch_user_id:
      name: musixmatch_user_id
      in: query
      required: true
      schema:
        type: string
      description: >-
        The Musixmatch user ID of the artist, obtained via token introspection
        of the user's access token
  schemas:
    DeliveryStatusEnvelope:
      type: object
      properties:
        message:
          type: string
          description: Descriptive message of performed operation
        data:
          type: object
          properties:
            delivery:
              type: object
              properties:
                delivery_id:
                  type: integer
                  description: Unique identifier for this delivery
                status:
                  type: string
                  enum:
                    - pending
                    - progress
                    - success
                    - failure
                  description: >-
                    Overall delivery status derived from per-track statuses.
                    `failure` means the ingestion pipeline failed before tracks
                    could be imported.
                error:
                  type: string
                  description: Error description when `status` is `failure`
                tracks:
                  type: array
                  description: >-
                    Per-track import status. Empty when `status` is `pending` or
                    `failure`.
                  items:
                    type: object
                    properties:
                      isrc:
                        type: string
                        description: International Standard Recording Code
                      track_title:
                        type: string
                      album_title:
                        type: string
                      album_upc:
                        type: string
                      release_date:
                        type: string
                        format: date
                        description: Release date in YYYY-MM-DD format
                      status:
                        type: string
                        enum:
                          - pending
                          - progress
                          - success
                        description: >-
                          `pending`: not yet processed. `progress`: being
                          imported into the Musixmatch catalogue. `success`:
                          fully imported.
                      commontrack_id:
                        type: integer
                        description: >-
                          Musixmatch catalogue track ID. Only present when
                          `status` is `success`.
    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'
  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

````