{"templateId":"markdown","versions":[{"version":"shipengine","label":"ShipStation API (formerly ShipEngine)","link":"/apis/shipengine/docs/tracking/tracking","default":false,"active":true,"folderId":"58c9a61d"},{"version":"shipstation-v2","label":"ShipStation V2 API","link":"/apis/shipstation-v2/docs/tracking/tracking","default":true,"active":false,"folderId":"58c9a61d"},{"version":"shipstation-v1","label":"ShipStation V1 API","link":"/apis/shipstation-v1/docs/tracking/tracking","default":false,"active":false,"folderId":"58c9a61d"}],"sharedDataIds":{"sidebar":"sidebar-apis/@shipengine/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"Track a Package","keywords":"shipping, labels, shipstation, documentation, api","siteUrl":"https://docs.shipstation.com","lang":"en-US","llmstxt":{"hide":false,"title":"ShipStation API LLM Docs","description":"Find links and references to all markdown documentation for use with LLMs","excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"track-a-package","__idx":0},"children":["Track a Package"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["With ShipStation API, you can retrieve real-time tracking events for ",{"$$mdtype":"Tag","name":"em","attributes":{},"children":["any"]}," package, even if you created the label outside of ShipStation API."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["There are two methods you can use for tracking shipments:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Use the tracking endpoint. This option requires you to specify the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["carrier_code"]}," and the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["tracking_number"]}," of the package. If you don’t know a carrier’s ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["carrier_code"]},", you can find it by ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/apis/shipengine/docs/reference/list-carriers"},"children":["listing carriers"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Use the label endpoint to ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/apis/shipengine/docs/tracking/track-by-label-id"},"children":["track by Label ID"]},". We recommend this method for tracking labels created via ShipStation."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This page provides details about using the tracking endpoint. See the ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/apis/shipengine/docs/tracking/track-by-label-id"},"children":["track by Label ID page"]}," for details about using that method."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"requirements","__idx":1},"children":["Requirements"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["The Tracking endpoint is only available on the ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"https://help.shipengine.com/hc/en-us/articles/19326509952027-Advanced-Plan"},"children":["Advanced plan or higher"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You must specify the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["carrier_code"]}," and the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["tracking_number"]}," of the package in the endpoint."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["For tracking shipments not created via ShipStation API, the carrier must still be connected to the ShipStation API account."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"example-request--response","__idx":2},"children":["Example Request & Response"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["GET /v1/tracking?carrier_code={carrierCode}&tracking_number={trackingNumber}"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"http","header":{"controls":{"copy":{}}},"source":"GET /v1/tracking?carrier_code=stamps_com&tracking_number=9405511899223197428490 HTTP/1.1\nHost: api.shipengine.com\nAPI-Key: __YOUR_API_KEY_HERE__\n","lang":"http"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n    \"tracking_number\": \"9405511899223197428490\",\n    \"tracking_url\": \"https://tools.usps.com/go/TrackConfirmAction.action?tLabels=9405511899223197428490\",\n    \"status_code\": \"DE\",\n    \"carrier_code\": \"usps\",\n    \"carrier_id\": 1,\n    \"carrier_detail_code\": null,\n    \"status_description\": \"Delivered\",\n    \"carrier_status_code\": \"01\",\n    \"carrier_status_description\": \"Your item was delivered in or at the mailbox at 2:03 pm on September 20, 2021 in SARCOXIE, MO 64862.\",\n    \"ship_date\": null,\n    \"estimated_delivery_date\": null,\n    \"actual_delivery_date\": null,\n    \"exception_description\": null,\n    \"events\": [\n        {\n            \"occurred_at\": \"2021-09-20T19:03:00Z\",\n            \"carrier_occurred_at\": \"2021-09-20T14:03:00\",\n            \"description\": \"Delivered, In/At Mailbox\",\n            \"city_locality\": \"SARCOXIE\",\n            \"state_province\": \"MO\",\n            \"postal_code\": \"64862\",\n            \"country_code\": \"\",\n            \"company_name\": \"\",\n            \"signer\": \"\",\n            \"event_code\": \"01\",\n            \"carrier_detail_code\": null,\n            \"status_code\": null,\n            \"status_description\": null,\n            \"carrier_status_code\": \"01\",\n            \"carrier_status_description\": \"Delivered, In/At Mailbox\",\n            \"latitude\": 37.0776,\n            \"longitude\": -94.1258\n        },\n        {\n            \"occurred_at\": \"2021-09-20T13:10:00Z\",\n            \"carrier_occurred_at\": \"2021-09-20T08:10:00\",\n            \"description\": \"Out for Delivery\",\n            \"city_locality\": \"SARCOXIE\",\n            \"state_province\": \"MO\",\n            \"postal_code\": \"64862\",\n            \"country_code\": \"\",\n            \"company_name\": \"\",\n            \"signer\": \"\",\n            \"event_code\": \"OF\",\n            \"carrier_detail_code\": null,\n            \"status_code\": null,\n            \"status_description\": null,\n            \"carrier_status_code\": \"OF\",\n            \"carrier_status_description\": \"Out for Delivery\",\n            \"latitude\": 37.0776,\n            \"longitude\": -94.1258\n        },\n        {\n            \"occurred_at\": \"2021-09-20T12:59:00Z\",\n            \"carrier_occurred_at\": \"2021-09-20T07:59:00\",\n            \"description\": \"Arrived at Post Office\",\n            \"city_locality\": \"SARCOXIE\",\n            \"state_province\": \"MO\",\n            \"postal_code\": \"64862\",\n            \"country_code\": \"\",\n            \"company_name\": \"\",\n            \"signer\": \"\",\n            \"event_code\": \"07\",\n            \"carrier_detail_code\": null,\n            \"status_code\": null,\n            \"status_description\": null,\n            \"carrier_status_code\": \"07\",\n            \"carrier_status_description\": \"Arrived at Post Office\",\n            \"latitude\": 37.0776,\n            \"longitude\": -94.1258\n        },\n        {\n            \"occurred_at\": \"2021-09-18T00:00:00Z\",\n            \"carrier_occurred_at\": \"2021-09-18T00:00:00\",\n            \"description\": \"In Transit to Next Facility\",\n            \"city_locality\": \"\",\n            \"state_province\": \"\",\n            \"postal_code\": \"\",\n            \"country_code\": \"\",\n            \"company_name\": \"\",\n            \"signer\": \"\",\n            \"event_code\": \"NT\",\n            \"carrier_detail_code\": null,\n            \"status_code\": null,\n            \"status_description\": null,\n            \"carrier_status_code\": \"NT\",\n            \"carrier_status_description\": \"In Transit to Next Facility\",\n            \"latitude\": null,\n            \"longitude\": null\n        },\n        {\n            \"occurred_at\": \"2021-09-17T02:41:00Z\",\n            \"carrier_occurred_at\": \"2021-09-16T19:41:00\",\n            \"description\": \"Arrived at USPS Regional Origin Facility\",\n            \"city_locality\": \"LAS VEGAS NV DISTRIBUTION CENTER ANNEX\",\n            \"state_province\": \"\",\n            \"postal_code\": \"\",\n            \"country_code\": \"\",\n            \"company_name\": \"\",\n            \"signer\": \"\",\n            \"event_code\": \"10\",\n            \"carrier_detail_code\": null,\n            \"status_code\": null,\n            \"status_description\": null,\n            \"carrier_status_code\": \"10\",\n            \"carrier_status_description\": \"Arrived at USPS Regional Origin Facility\",\n            \"latitude\": null,\n            \"longitude\": null\n        },\n        {\n            \"occurred_at\": \"2021-09-16T21:06:00Z\",\n            \"carrier_occurred_at\": \"2021-09-16T14:06:00\",\n            \"description\": \"USPS picked up item\",\n            \"city_locality\": \"LAS VEGAS\",\n            \"state_province\": \"NV\",\n            \"postal_code\": \"89118\",\n            \"country_code\": \"\",\n            \"company_name\": \"\",\n            \"signer\": \"\",\n            \"event_code\": \"03\",\n            \"carrier_detail_code\": null,\n            \"status_code\": null,\n            \"status_description\": null,\n            \"carrier_status_code\": \"03\",\n            \"carrier_status_description\": \"USPS picked up item\",\n            \"latitude\": 35.9292,\n            \"longitude\": -115.1987\n        }\n    ]\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"about-the-tracking-response","__idx":3},"children":["About the Tracking Response"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Event Timestamps:"]}]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["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. This event property is not yet fully supported across all carriers."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["occurred_at"]}," is our best effort at converting the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["carrier_occurred_at"]}," field to UTC, based on the time of the event's occurrence."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"tracking-status-codes","__idx":4},"children":["Tracking Status Codes"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Here's how the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["status_code"]}," and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["status_description"]}," fields correspond to each other and how they correspond to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["tracking_status"]}," field of a ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/apis/shipengine/docs/labels/create-a-label"},"children":["label"]},":"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"status_code"},"children":["status_code"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"status_description"},"children":["status_description"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"tracking_status"},"children":["tracking_status"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["AC"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Accepted"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["IT"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["In Transit"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["in_transit"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["DE"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Delivered"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["delivered"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["EX"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Exception"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["error"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["UN"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Unknown"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["unknown"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["AT"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Delivery Attempt"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["N/A"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["NY"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Not Yet In System"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["in_transit"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SP"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Delivered To The Collection Location"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["delivered_to_service_point"]}]}]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"supported-carriers","__idx":5},"children":["Supported Carriers"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["We've included a list of the most common carriers that support tracking and their carrier codes."]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Carrier"},"children":["Carrier"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Carrier Code"},"children":["Carrier Code"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["U.S. Postal Service"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["usps"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Stamps.com"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["stamps_com"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["FedEx"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["fedex"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["UPS"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ups"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["DHL Express"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["dhl_express"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["DHL ECommerce"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["dhl_global_mail"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["DHL eCommerce Australia"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["dhl_ecommerce_au"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Access Worldwide"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["access_worldwide"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["APC"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["apc"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Aramex AU / Fastway"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["fastway_au"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Aramex NZ / Fastway"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["fastway_nz"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Asendia"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["asendia"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Australia Post"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["australia_post"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Australia Post eParcel"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["australia_post"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Australia Post MyPost Business"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["australia_post_mypost_business"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Canada Post"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["canada_post"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Canpar Express"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["canpar"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["CouriersPlease"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["couriers_please"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["DAI"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["dai"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Direct Freight"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["direct_freight"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Evri International"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["evri_international"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["First Mile"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["firstmile"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Freightways"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["freightways"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Freightways - Castle Parcels"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["castle_parcels"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Freightways - New Zealand Couriers"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["new_zealand_couriers"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Freightways - Now Couriers"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["now_couriers"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Freightways - Post Haste"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["post_haste"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Global Access"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["global_access"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["IMEX"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["imex"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Landmark Global"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["landmark_global"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Landmark Global AU"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["landmark_global_au"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Landmark Global UK"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["landmark_global_uk"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Newgistics"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["newgistics"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Nobordist"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["nobordist"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["NZ Post Domestic"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["courierpost"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["NZ Post International"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["new_zealand_post_international"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["OnTrac"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ontrac"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Purolator Canada"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["purolator_ca"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Quantium"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["quantium"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["RR Donnelley"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["rr_donnelley"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["SEKO Omni-Channel Logistics"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["seko"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["SEKO Omni-Channel Logistics UK"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["seko_uk"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Sendle"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["sendle"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Seven Senders"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["seven_senders"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["StarTrack"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["star_track"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["TNT Australia"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["tnt_australia"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Team Global Express IPEC"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["toll_ipec"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Team Global Express Priority"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["toll_priority"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["wizmo"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["wizmo"]}]}]}]}]}]}]},"headings":[{"value":"Track a Package","id":"track-a-package","depth":1},{"value":"Requirements","id":"requirements","depth":2},{"value":"Example Request & Response","id":"example-request--response","depth":2},{"value":"About the Tracking Response","id":"about-the-tracking-response","depth":2},{"value":"Tracking Status Codes","id":"tracking-status-codes","depth":3},{"value":"Supported Carriers","id":"supported-carriers","depth":2}],"frontmatter":{"seo":{"title":"Track a Package"}},"lastModified":"2026-04-08T10:47:45.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/apis/shipengine/docs/tracking/tracking","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}