---
title: "Get delivery status"
method: GET
path: "/distribution/v1/deliveries/{delivery_id}"
tags: ["Deliveries"]
---

# Get delivery status

`GET /distribution/v1/deliveries/{delivery_id}`

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

## Path parameters

- `delivery_id` integer, required

## Query parameters

- `musixmatch_user_id` string, required

## Response `200`

Current delivery status.

- DeliveryStatusEnvelope
  - `message` string — Descriptive message of performed operation
  - `data` object
    - `delivery` object
      - `delivery_id` integer — Unique identifier for this delivery
      - `status` 'pending' | 'progress' | 'success' | 'failure' — Overall delivery status derived from per-track statuses. `failure` means the ingestion pipeline failed before tracks could be imported.
      - `error` string — Error description when `status` is `failure`
      - `tracks` object[] — Per-track import status. Empty when `status` is `pending` or `failure`.
        - `isrc` string — International Standard Recording Code
        - `track_title` string
        - `album_title` string
        - `album_upc` string
        - `release_date` string, date — Release date in YYYY-MM-DD format
        - `status` 'pending' | 'progress' | 'success' — `pending`: not yet processed. `progress`: being imported into the Musixmatch catalogue. `success`: fully imported.
        - `commontrack_id` integer — Musixmatch catalogue track ID. Only present when `status` is `success`.

## Other responses

- `401` — Unauthorized — missing or invalid Bearer token
- `403` — Forbidden - provided user id not matching request
- `404` — Not found

---

[API](https://skmtc.net/musixmatch/apis/lyrics-api.md) · [All operations](https://skmtc.net/musixmatch/apis/lyrics-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/musixmatch/lyrics-api/revisions/edbc169d5499/schema)
