Skip to main content
GET
/
v1
/
trackings
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/trackings/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "0d7f7cd9-713e-437e-a9d9-35d354eaa1cb",
  "object": "tracking",
  "courier_name": "UPS",
  "number": "1Z879E930346834440",
  "url": "https://wwwapps.ups.com/WebTracking/track?track=yes&trackNums=1Z879E930346834440",
  "fulfillment": "5e59dd10-c50f-4b1b-a28b-af9a1097759f",
  "created_at": 1767909785,
  "updated_at": 1767909785
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

number
string

The tracking number provided by the courier.

url
string | null

The URL to track this shipment on the courier's website. (This is inferred from the tracking number for some couriers.)

courier_name
string | null

The name of the courier for this shipment. (This is inferred from the tracking number for some couriers.)

fulfillment

Expandable – The associated fulfillment ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.