---
title: "Get Single Shipment"
method: GET
path: "/guide/{tracking_number}"
tags: ["Shipments"]
---

# Get Single Shipment

`GET /guide/{tracking_number}`

Retrieves the full details of a specific shipment, including origin/destination addresses, carrier, current status, and tracking history. This is the primary endpoint for looking up individual shipments and monitoring delivery progress.

**When to use:** Call this endpoint to display shipment detail pages, check delivery status, provide tracking information to customers, or verify shipment data after creation.

**Prerequisites:**
- Valid JWT token in the Authorization header
- A valid `tracking_number` from a previously created shipment (obtained from `GET /guide/{MM}/{YYYY}` or from the Shipping API shipment creation response)

**Key behaviors:**
- Returns comprehensive shipment data including `origin`, `destination`, `carrier`, `status`, `created_at`, and `updated_at`
- The `status` field reflects the latest known delivery status from the carrier
- This endpoint returns data for shipments created through your Envia account; it does not perform cross-carrier universal tracking
- Use the `tracking_number` exactly as returned by other Envia endpoints (case-sensitive)

## Path parameters

- `tracking_number` string, required

## Response `200`

Successful response

- object
  - `success` boolean — Indicates if the request was successful
  - `data` object — Shipment information
    - `tracking_number` string — Tracking number
    - `carrier` string — Carrier name
    - `status` string — Current status
    - `origin` object — Origin address
    - `destination` object — Destination address
    - `created_at` string, date-time — Creation date
    - `updated_at` string, date-time — Last update date

---

[API](https://skmtc.net/envia/apis/envia-shipping-api-complete-documentation.md) · [All operations](https://skmtc.net/envia/apis/envia-shipping-api-complete-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/envia/envia-shipping-api-complete-documentation/revisions/39f9208959d6/schema)
