v1

latestOpenAPI 3.1.02026-07-2451827.5 KB
Carrier API

Get shipment tracking history

Retrieves GPS location history for a specific shipment.

get/v1/carrier/shipments/{identifier}/tracking

Path parameters

identifierstring required

Shipment identifier (offerId, orderNumber, or carrierReference)

Response

Tracking data retrieved successfully

order_numberstring

Human-readable order number

last_updatedstring date-time

Timestamp of the most recent tracking point

Example response

{
  "order_number": "Y73Q0",
  "points": [
    {
      "latitude": 37.7749,
      "longitude": -122.4194,
      "heading": 180,
      "speed_mph": 65,
      "timestamp": "2026-01-15T10:30:00Z"
    }
  ],
  "last_updated": "2026-01-15T14:30:00Z"
}