Skip to main content
GET
/
v1
/
trackings
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/trackings/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "ee4a292b-6c95-4e9f-9288-e1bd98b6d97e",
  "object": "tracking",
  "courier_name": "UPS",
  "number": "1Z879E930346834440",
  "url": "https://wwwapps.ups.com/WebTracking/track?track=yes&trackNums=1Z879E930346834440",
  "fulfillment": "6e2dbc4e-74c0-4df1-83cb-453a92b07ba1",
  "created_at": 1769675015,
  "updated_at": 1769675015
}

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.