> ## 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/deliveries` to track progress. `commontrack_id` is only present on tracks whose `status` is `success`.



## OpenAPI

````yaml /enterprises/distribution/openapi.json get /distribution/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/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/deliveries` to track progress. `commontrack_id` is only
        present on tracks whose `status` is `success`.
      operationId: getDelivery
      parameters:
        - $ref: '#/components/parameters/delivery_id'
      responses:
        '200':
          description: Current delivery status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeliveryStatusEnvelope'
              examples:
                success:
                  value:
                    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
                progress:
                  value:
                    message:
                      body:
                        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
                      header:
                        status_code: 200
                        execute_time: 0.03
                failure:
                  value:
                    message:
                      body:
                        delivery:
                          delivery_id: 123456
                          status: failure
                          error: 'ERN parsing failed: missing ISRC on track 2'
                          tracks: []
                      header:
                        status_code: 200
                        execute_time: 0.03
        '401':
          $ref: '#/components/responses/Unauthorized'
        '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/deliveries`
  schemas:
    DeliveryStatusEnvelope:
      type: object
      properties:
        message:
          type: object
          properties:
            body:
              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`.
            header:
              $ref: '#/components/schemas/MessageHeader'
    MessageHeader:
      type: object
      properties:
        status_code:
          type: number
          description: HTTP status code of the response
        execute_time:
          type: number
          description: Server execution time in seconds
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
        data:
          type: object
          properties:
            error:
              type: object
              properties:
                code:
                  type: string
  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

````