Home
17TRACK
Get Track Info
Get Track Info
Example request to retrieve real-time tracking status and event history for a registered shipment.
Shipping Package Tracking Logistics Carriers Delivery Webhooks
Get Track Info is an example object payload from 17TRACK, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
Top-level fields
summary description request response
Example Payload
{
"summary": "Get tracking information",
"description": "Example request to retrieve real-time tracking status and event history for a registered shipment.",
"request": {
"method": "POST",
"url": "https://api.17track.net/track/v1/gettrackinfo",
"headers": {
"17token": "YOUR_API_KEY",
"Content-Type": "application/json"
},
"body": [
{
"number": "1Z999AA10123456784"
}
]
},
"response": {
"status": 200,
"body": {
"code": 0,
"data": {
"accepted": [
{
"number": "1Z999AA10123456784",
"carrier": 100003,
"track": {
"z0": {
"z": 4,
"s": 41,
"a": "Louisville, KY, US",
"c": "Out for Delivery",
"d": "2026-06-13T09:30:00"
},
"z1": [
{
"z": 1,
"s": 10,
"a": "Shenzhen, Guangdong, CN",
"c": "Shipment information received",
"d": "2026-06-10T14:00:00"
},
{
"z": 2,
"s": 20,
"a": "Hong Kong International Airport, HK",
"c": "Departed facility",
"d": "2026-06-11T22:15:00"
},
{
"z": 3,
"s": 30,
"a": "Louisville, KY, US",
"c": "Arrived at destination hub",
"d": "2026-06-13T04:45:00"
},
{
"z": 4,
"s": 41,
"a": "Louisville, KY, US",
"c": "Out for Delivery",
"d": "2026-06-13T09:30:00"
}
]
}
}
],
"rejected": []
}
}
}
}