Track a Package

With Broad Reach, you can subscribe to real-time tracking events for any package.

📘

Event Timestamps

carrier_occurred_at is the timestamp of the event received from the carrier, it is assumed to be the local time of where the event occurred.

occurred_at is the UTC based time of the event's occurrence.

Request

GET https://client.brdrch.com/api/v1/package/track/BR800390810600 HTTP/1.1
Host: client.brdrch.com
API-Key: __YOUR_API_KEY_HERE__
Cache-Control: no-cache

Response

{
  "tracking_number": "BR800390810600",
  "event_code": "DE",
  "event_description": "Delivered",
  "shipped_date": "2019-07-27T11:59:03.289Z",
  "delivery_date": "2019-07-27T11:59:03.289Z",
  "exception_description": "",
  "carrier_tracking_number": "",
  "carrier_tracking_link": "",
  "events": [
    {
      "occurred_at": "2019-09-13T12:32:00Z",
      "event_code": "U1",
      "event_description": "Arrived at USPS Facility",
      "city_locality": "OCEANSIDE",
      "state_province": "CA",
      "postal_code": "92056",
      "country_code": ""
    }
  ]
}