Tracking
Track a parcel
Track your shipments with your 12 digit Interparcel tracking number.
Endpoint
GET
https://api.interparcel.com/tracking/{trackingNumber}
Request Headers
Name | Type | Required | Example | Description |
---|---|---|---|---|
Accept | String | true | application/json | Request the content in the correct format |
Content-Type | String | true | application/json | Ensure the content sent is in the correct format |
X-Interparcel-Auth | String | true | YOUR_API_KEY | Your API Key provided by Interparcel |
X-Interparcel-API-Version | String | true | 1 | The latest API version |
Request Parameters
Name | Type | Required | Description |
---|---|---|---|
trackingNumber | String | true | The Interparcel tracking number |
Example Request
https://api.interparcel.com/tracking/GB9999999999
Example Responses
Success
▼
{
"status": 0,
"servce": "FedEx Economy",
"currentStatus": "D",
"dateSent": "2023-11-07",
"dateDelivered": "2023-11-09",
"timeDelivered": "16:10",
"signedForName": "A.N. Example",
"events": [
{
"date": "2023-11-09",
"time": "16:10",
"event": "Delivered",
"location": "Rome, IT",
"status": "D"
},
{
"date": "2023-11-09",
"time": "13.26",
"event": "On FedEx vehicle for delivery",
"location": "Rome, IT",
"status": "O"
},
{
"date": "2023-11-08",
"time": "23.19",
"event": "In transit",
"location": "Stanstead, UK",
"status": "T"
},
{
"date": "2023-11-07",
"time": "09.05",
"event": "Shipment has been booked",
"location": "Online",
"status": "B"
}
]
}
Error
▼
{
"status": 1,
"errorCode": 1,
"errorMessage": "The tracking number is not valid"
}