Site Logo

Track a Shipment

This API endpoint returns tracking information about your LTL shipment once it has been picked up by the carrier. When you scheduled the pickup for your shipment, the response included a pro_number if your carrier support automatically generated PRO numbers. If not, the carrier should provide one at the time of pickup.

The PRO number is essentially a tracking number and is used to get information about the status of your shipment, including intermediate events that may occur en route to your final destination.

To use this endpoint, you will need the carrier_code for the selected carrier as well as the pro_number.

Example Request

GET /v-beta/ltl/tracking?carrier_code=:carrier_code&pro_number=:pro_number/

1
2
3
GET /v-beta/ltl/tracking?carrier_code=FXFE&pro_number=24601-42 HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Example Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"pro_number": "123456789",
"ship_from": {
"address": {
"postal_code": "30250"
}
},
"ship_to": {
"address": {
"postal_code": "36801"
}
},
"pickup": {
"date": "2021-05-31"
},
"delivery": {
"estimated": {
"date": "",
"time": ""
},
"actual": {
"date": "",
"time": ""
},
"signature": {
"name": "MARK PITTS"
}
},
"events": [
{
"status": "delivered",
"date": "2021-06-01",
"time": "17:55:00",
"location": {
"city_locality": "Regina",
"state_province": "SK"
},
"carrier": {
"description": "Delivered 06/01/2021 12:27 PM;Recvd by: MARK PITTS"
}
}
]
}