---
title: "TrackShipmentbyTrackingId"
method: GET
path: "/client/tracking"
tags: ["Tracking"]
---

# TrackShipmentbyTrackingId

`GET /client/tracking`

Retrieves tracking information for a shipment by its tracking ID, including status, recipient, address, dimensions, and scan events.

## Query parameters

- `trackingId` string, required

## Response `200`

Tracking info or error

- object
  - `message` string, required — Additional information about the request status.
  - `code` integer, required — Status code. 0 indicates success.
  - `data` TrackingResponseData
    - `trackingId` string, required — Shipment tracking ID.
    - `status` string, required — Current shipment status.
    - `statusCode` integer — Internal status code.
    - `orderNumber` string, required — Order number.
    - `labelCreatedAt` integer — Unix timestamp (ms) when label was created.
    - `recipient` object
      - `fullName` string, required
      - `phone` string
      - `email` string, email
    - `destination` Address
      - `address1` string, required — Address line 1.
      - `address2` string — Address line 2.
      - `address3` string — Address line 3.
      - `city` string, required — City.
      - `province` string, required — Province or state code.
      - `postalCode` string, required — Postal or ZIP code.
      - `country` string, required — Country code (e.g. CA, US).
      - `latitude` number — Latitude.
      - `longitude` number — Longitude.
    - `batchId` string
    - `note` string
    - `signatureRequired` boolean
    - `weight` Weight
      - `value` number, required — Weight value.
      - `weightUnit` 'G' | 'KG' | 'LB' | 'OZ', required — Unit of weight.
    - `dimensions` Dimensions
      - `length` number — Length.
      - `width` number — Width.
      - `height` number — Height.
      - `dimensionUnit` 'CM' | 'INCH' | 'M' | 'FT' — Unit of dimension.
    - `events` TrackingEvent[]
      - `status` string — Shipment status string at time of event (e.g. `OUT_FOR_DELIVERY`, `DELIVERED`).
      - `statusCode` integer — Numeric status code corresponding to the status.
      - `timestamp` integer — Unix timestamp in milliseconds.
      - `location` object
        - `name` string — Location name.
        - `lat` number — Latitude.
        - `lng` number — Longitude.
      - `description` string — Additional notes about the event.

---

[API](https://skmtc.dev/uniuni/apis/uniuni-platform-client-api.md) · [All operations](https://skmtc.dev/uniuni/apis/uniuni-platform-client-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/uniuni/uniuni-platform-client-api/revisions/d61334c7f8b1/schema)
