Skip to main content
GET
/
v1
/
trackings
List
curl --request GET \
  --url https://{defaultHost}/v1/trackings \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/trackings"
  },
  "data": [
    {
      "id": "a61b719b-d493-4a90-b31e-c33b04b8325b",
      "object": "tracking",
      "courier_name": "UPS",
      "number": "1Z879E930346834440",
      "url": "https://wwwapps.ups.com/WebTracking/track?track=yes&trackNums=1Z879E930346834440",
      "fulfillment": "b1bb3bc4-c1c9-4acc-a4a0-76b7751bf5e9",
      "created_at": 1767909784,
      "updated_at": 1767909784
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

fulfillment_ids[]
string[]

Only return objects that belong to the given fulfillments.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.