v1
latestOpenAPI 3.1.02026-07-1270243932.3 KBTracking Status
Get a tracking status
Returns the tracking status of a shipment using a carrier name and a tracking number.
get/tracks/{Carrier}/{TrackingNumber}
Path parameters
TrackingNumberstring required
Tracking number
Carrierstring required
Name of the carrier
Headers
SHIPPO-API-VERSIONstring
Example:2018-02-08
Optional string used to pick a non-default API version to use. See our <a href="https://docs.goshippo.com/docs/api_concepts/apiversioning/">API version</a> guide.
Response
Tracking status
Example response
{
"address_from": {
"city": "Las Vegas",
"country": "US",
"state": "NV",
"zip": "89101"
},
"address_to": {
"city": "Las Vegas",
"country": "US",
"state": "NV",
"zip": "89101"
},
"carrier": "usps",
"metadata": "Order 000123",
"original_eta": "2021-07-23T00:00:00Z",
"servicelevel": {
"name": "Priority Mail Express",
"token": "usps_priority_express",
"parent_servicelevel": {
"name": "Priority Mail Express",
"token": "usps_priority_express"
}
},
"tracking_history": [
{
"location": {
"city": "Las Vegas",
"country": "US",
"state": "NV",
"zip": "89101"
},
"status": "DELIVERED",
"substatus": {
"code": "information_received",
"text": "Information about the package received."
},
"status_date": "2016-07-23T00:00:00Z",
"status_details": "Your shipment has been delivered at the destination mailbox."
}
],
"tracking_number": "9205590164917312751089",
"tracking_status": {
"location": {
"city": "Las Vegas",
"country": "US",
"state": "NV",
"zip": "89101"
},
"status": "DELIVERED",
"substatus": {
"code": "information_received",
"text": "Information about the package received."
},
"status_date": "2016-07-23T00:00:00Z",
"status_details": "Your shipment has been delivered at the destination mailbox."
}
}